mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
fix: eslint config file parseOptions.project path is updated
This commit is contained in:
parent
5bec549868
commit
3b5f8d149a
2 changed files with 5 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ module.exports = {
|
||||||
|
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
tsconfigRootDir: __dirname,
|
tsconfigRootDir: __dirname,
|
||||||
project: ['../../apps/*/tsconfig.json', '../../packages/*/tsconfig.json'],
|
project: ['../../tsconfig.eslint.json'],
|
||||||
ecmaVersion: 2022,
|
ecmaVersion: 2022,
|
||||||
ecmaFeatures: {
|
ecmaFeatures: {
|
||||||
jsx: true,
|
jsx: true,
|
||||||
|
|
|
||||||
4
tsconfig.eslint.json
Normal file
4
tsconfig.eslint.json
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"extends": "./packages/tsconfig/base.json",
|
||||||
|
"include": ["packages/**/*", "apps/**/*"]
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue