forked from onsol-labs/ans-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 728 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 728 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
{
"compilerOptions": {
"outDir": "dist",
"target": "es2020",
"sourceMap": true,
"module": "es2015",
"baseUrl": "./",
"lib": ["es2020"],
"allowSyntheticDefaultImports": true,
"paths": {
"@src*": ["src*"],
"@test*": ["__test__*"]
},
"moduleResolution": "node",
"noEmitOnError": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noErrorTruncation": true,
"pretty": true
},
"include": ["./src/", "./__test__/", "examples"]
}