We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d7ee08 commit 5680db9Copy full SHA for 5680db9
tsconfig.json
@@ -1,15 +1,17 @@
1
{
2
- "include": ["*.js"],
+ "include": ["**/**.js"],
3
+ "exclude": ["coverage", "node_modules"],
4
"compilerOptions": {
- "target": "ES2020",
5
- "lib": ["ES2020"],
6
- "module": "ES2020",
7
- "moduleResolution": "node",
8
- "allowJs": true,
9
"checkJs": true,
10
"declaration": true,
11
"emitDeclarationOnly": true,
12
- "allowSyntheticDefaultImports": true,
13
- "skipLibCheck": true
+ "exactOptionalPropertyTypes": true,
+ "forceConsistentCasingInFileNames": true,
+ "lib": ["es2020"],
+ "module": "node16",
+ "newLine": "lf",
+ "skipLibCheck": true,
14
+ "strict": true,
15
+ "target": "es2020"
16
}
17
0 commit comments