-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 595 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"outDir": "lib",
"rootDir": "src",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"diagnostics": true,
"esModuleInterop": true,
"extendedDiagnostics": false,
"listEmittedFiles": true,
"module": "commonjs",
"removeComments": true,
"sourceMap": true,
"strict": true,
"lib": ["ES2020"],
"target": "ES2020"
},
"exclude": [
"__mocks__",
"**/*.spec.ts",
"**/*.test.ts",
"lib",
"node_modules",
"testing.ts"
]
}