-
Notifications
You must be signed in to change notification settings - Fork 56
/
tsconfig.base.json
59 lines (59 loc) · 1.49 KB
/
tsconfig.base.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"compilerOptions": {
"baseUrl": "${configDir}",
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"newLine": "lf",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"paths": {
"##/*": ["src/*"],
"#a/*": ["src/app/*"],
"#@/*": ["test/*"]
},
"preserveConstEnums": true,
"pretty": true,
"resolveJsonModule": true,
"rootDir": "${configDir}/src",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictPropertyInitialization": false,
"stripInternal": true,
"target": "ES2022",
"tsBuildInfoFile": ".tsbuildinfo",
"types" : ["mocha", "node"],
"verbatimModuleSyntax": true
},
"include": [
"${configDir}/src/**/*.ts"
],
"exclude": [
"${configDir}/asset",
"${configDir}/app/public",
"${configDir}/app/views",
"${configDir}/dist",
"${configDir}/fixtures",
"node_modules*",
"**/*.d.ts",
"**/*.spec.ts"
],
"ts-node": {
"esm": true,
"experimentalResolver": true,
"experimentalSpecifierResolution": "node"
}
}