13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
parserOptions: {
|
|
project: ['./tsconfig.json'],
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
settings: {
|
|
next: {
|
|
rootDir: '../../app/',
|
|
},
|
|
},
|
|
}
|