You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
251 B
14 lines
251 B
2 years ago
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
2 years ago
|
es2021: true
|
||
2 years ago
|
},
|
||
2 years ago
|
extends: 'standard-with-typescript',
|
||
2 years ago
|
parserOptions: {
|
||
2 years ago
|
ecmaVersion: 'latest',
|
||
|
sourceType: 'module',
|
||
|
project: ['./tsconfig.json'],
|
||
|
tsconfigRootDir: __dirname
|
||
|
}
|
||
|
}
|