We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2597fde commit 10e8973Copy full SHA for 10e8973
1 file changed
kleros-app/tsconfig.check.json
@@ -1,11 +1,13 @@
1
/*
2
-* This file simple extends the default config, but adds the src directory to the include list.
+* This file simple extends the default config, but adds the src directory and any ts/tsx files in root to the include list.
3
* This way check-types can look at both the src and lib folders, but vite can still use the original config
4
* and only look at the lib directory when building the package.
5
*/
6
{
7
"extends": "./tsconfig.json",
8
"include": [
9
- "src/**/*"
+ "src/**/*",
10
+ "**/*.ts",
11
+ "**/*.tsx",
12
]
13
}
0 commit comments