2022-05-15 14:44:12 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
amd: true,
|
|
|
|
node: true
|
|
|
|
},
|
|
|
|
parser: '@typescript-eslint/parser',
|
2022-05-15 14:50:42 +00:00
|
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
2022-05-15 16:57:20 +00:00
|
|
|
extends: ['eslint:recommended', "plugin:@typescript-eslint/recommended"],
|
|
|
|
rules: {
|
|
|
|
"@typescript-eslint/no-var-requires": "off"
|
|
|
|
}
|
2022-05-15 14:44:12 +00:00
|
|
|
};
|