-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (31 loc) · 829 Bytes
/
Copy pathtsconfig.json
File metadata and controls
36 lines (31 loc) · 829 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
28
29
30
31
32
33
34
35
36
{
"compilerOptions": {
/* 目标与模块系统 */
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
/* 严格模式 —— 全栈类型安全保障 */
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
/* 输出 */
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
/* 互操作 */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
/* Bun 类型 */
"types": ["bun"],
/* 额外检查 */
"skipLibCheck": true,
"noEmitOnError": true
},
"include": ["src/**/*.ts"],
"exclude": ["dist", "node_modules", "test"]
}