15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['impress/next'],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
settings: {
|
|
next: {
|
|
rootDir: __dirname,
|
|
},
|
|
},
|
|
ignorePatterns: ['node_modules', '.eslintrc.js'],
|
|
};
|