12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
extends: ['impress/jest', 'plugin:import/recommended'],
|
||
|
|
parserOptions: {
|
||
|
|
sourceType: 'module',
|
||
|
|
ecmaVersion: 'latest',
|
||
|
|
tsconfigRootDir: __dirname,
|
||
|
|
project: ['./tsconfig.json'],
|
||
|
|
},
|
||
|
|
ignorePatterns: ['node_modules'],
|
||
|
|
};
|