-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
72 lines (72 loc) · 1.72 KB
/
tsconfig.json
File metadata and controls
72 lines (72 loc) · 1.72 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
"noEmit": true,
"rootDirs": [
"."
],
"baseUrl": "./",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"lib": [
"ESNext",
"ES5",
"ES6",
"DOM"
],
// 兼容不同扩展类型
"resolveJsonModule": true,
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"checkJs": false,
// 兼容ES模式
"isolatedModules": true,
"verbatimModuleSyntax": true,
"importsNotUsedAsValues": "remove",
"erasableSyntaxOnly": true,
// 兼容不同运行环境和老版本
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"preserveSymlinks": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"allowUmdGlobalAccess": true,
// typeScript 严格检查范围
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"allowUnreachableCode": true,
"skipLibCheck": true
},
"types": ["node"],
"include": [
"**/*"
],
"exclude": [
"node_modules",
"./.commitlintrc.js",
"eslint.config.js",
".husky",
"ts-node.js",
"postbuild.js"
],
"references": [],
"ts-node": {
"compilerOptions": {
"module": "ESNext"
},
"esm": true
}
}