mirror of
https://github.com/morris/vanilla-todo.git
synced 2025-01-17 20:58:22 +01:00
26 lines
413 B
JSON
26 lines
413 B
JSON
{
|
|
"root": true,
|
|
"extends": ["eslint:recommended", "plugin:compat/recommended"],
|
|
"globals": {
|
|
"Set": "readonly",
|
|
"Map": "readonly"
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 5
|
|
},
|
|
"rules": {},
|
|
"settings": {
|
|
"polyfills": [
|
|
"Set",
|
|
"Map",
|
|
"fetch",
|
|
"Object.assign",
|
|
"requestAnimationFrame",
|
|
"performance.now"
|
|
]
|
|
}
|
|
}
|