-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- https://typescript-eslint.io/linting/troubleshooting/#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file Parsing error: ESLint was configured to run on `src/transform-values/simply-important.ts` using `parserOptions.project`: - <tsconfigRootDir>/tsconfig.json - <tsconfigRootDir>/tsconfig.node.json However, none of those TSConfigs include this file. Either: - Change ESLint's list of included files to not include this file - Change one of those TSConfigs to include this file - Create a new TSConfig that includes this file and include it
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"extends": "tsconfig-custom/tsconfig.json", | ||
"include": ["./src/**/*.ts", "__tests__/**.ts"], | ||
"include": ["src/**/*.ts", "__tests__/**/*.ts"], | ||
"exclude": ["dist"], | ||
"references": [{ "path": "tsconfig.node.json" }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"extends": "tsconfig-custom/tsconfig.json", | ||
"include": ["./src/**/*.ts", "__tests__/**.ts"], | ||
"include": ["src/**/*.ts", "__tests__/**/*.ts"], | ||
"exclude": ["dist"], | ||
"references": [{ "path": "tsconfig.node.json" }] | ||
} |