mirror of
https://github.com/morris/vanilla-todo.git
synced 2025-02-23 07:36:08 +01:00
18 lines
326 B
JavaScript
18 lines
326 B
JavaScript
|
module.exports = {
|
||
|
extends: ['eslint:recommended', 'plugin:compat/recommended'],
|
||
|
globals: {
|
||
|
Set: 'readonly',
|
||
|
Map: 'readonly',
|
||
|
},
|
||
|
env: {
|
||
|
browser: true,
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 5,
|
||
|
},
|
||
|
rules: {},
|
||
|
settings: {
|
||
|
polyfills: ['Array.from', 'Set', 'Map', 'fetch', 'Object.assign'],
|
||
|
},
|
||
|
};
|