We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tsconfig.json
1 parent 2af24a4 commit f249a5eCopy full SHA for f249a5e
tsconfig.json
@@ -1,16 +1,17 @@
1
{
2
- "include": ["*.js", "lib/**/*.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,
+ "exactOptionalPropertyTypes": true,
+ "forceConsistentCasingInFileNames": true,
+ "lib": ["es2020"],
+ "module": "node16",
+ "newLine": "lf",
13
"skipLibCheck": true,
14
- "strict": true
+ "strict": true,
15
+ "target": "es2020"
16
}
17
0 commit comments