-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
35 lines (30 loc) · 1.03 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
{
"compilerOptions": {
/* Strict Type-Checking Options */
"strict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"baseUrl": "./" /* Base directory to resolve non-absolute module names. */,
"paths": {
// 配置模块路径映射
"@client/*": ["./client/*"],
"@server/*": ["./server/*"],
"@scripts/*": ["./scripts/webpack/*"],
"@img/*": ["./client/img/*"],
"@app/*": ["./client/app/*"]
},
/* Experimental Options */
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* Advanced Options */
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}