Spaces:
Sleeping
Sleeping
| module.exports = { | |
| root: true, | |
| env: { | |
| node: true, | |
| browser: true | |
| }, | |
| parserOptions: { | |
| project: './tsconfig.json', | |
| tsconfigRootDir: __dirname | |
| }, | |
| extends: [ | |
| './rules/eslint/js', | |
| './rules/eslint/import', | |
| './rules/eslint/react', | |
| './rules/eslint/ts', | |
| './rules/eslint/prettier' | |
| ], | |
| rules: { | |
| '@next/next/no-sync-scripts': 'off' | |
| }, | |
| settings: { | |
| 'import/resolver': { | |
| typescript: { | |
| project: 'Second-Me/lpm_frontend/tsconfig.json' | |
| }, | |
| node: { | |
| extensions: ['.js', '.jsx', '.ts', '.tsx'] | |
| } | |
| } | |
| } | |
| }; | |