11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
|
/* eslint-env node */
|
||
|
module.exports = {
|
||
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
root: true,
|
||
|
parserOptions: {
|
||
|
project: true,
|
||
|
tsconfigRootDir: __dirname,
|
||
|
},
|
||
|
};
|