-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 912 Bytes
/
tsconfig.json
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
30
31
32
{
// "compileOnSave": true,
"compilerOptions": {
"module": "esnext",
"target": "es2017",
"lib": ["es2017", "DOM"],
"jsx": "preserve",
"sourceMap": true,
"outDir": "build/",
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"preserveConstEnums": true,
"strictNullChecks": true,
"noEmitOnError": false,
"watch": false,
// "watch": true
// "suppressImplicitAnyIndexErrors": true //Suppress noImplicitAny errors for indexing objects lacking index signatures.
"baseUrl": "./",
"paths": {
"@data-structures/*": ["src/AbstractDataStructures/*"]
}
},
// "ts-node": {
// "transpileOnly": true,
// "transpiler": "ts-node/transpilers/swc-experimental"
// },
"include": ["src/**/*", "tests/**/*-spec.ts"]
}