-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 827 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 827 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
29
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"resolveJsonModule": true,
"outDir": "out",
"lib": [
"es2020.string",
"es6"
],
"experimentalDecorators": true,
"sourceMap": true,
"rootDir": "src",
"strict": false, /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* FixReport error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* FixReport errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* FixReport errors on unused parameters. */
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true
},
"exclude": [
"node_modules",
"out/**",
".idea/**",
"tests/**/*.test.ts"
]
}