-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (40 loc) · 1.37 KB
/
tsconfig.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
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
/* Bundler mode */
"moduleResolution": "bundler",
"resolveJsonModule": true,
/* 严格类型检查相关 */
// 启用所有严格的类型检查选项
"strict": true,
// switch 语句必须包含 break 或 return
"noFallthroughCasesInSwitch": true,
// 报告未使用的局部变量错误
"noUnusedLocals": true,
// 报告未使用的参数错误
"noUnusedParameters": true,
/* 输出相关配置 */
// 生成 .d.ts 类型声明文件
"declaration": true,
// 类型声明文件的输出目录
"declarationDir": "dist/types",
// 只输出类型声明文件,不输出 JS 文件
"emitDeclarationOnly": true,
// 编译输出目录
"outDir": "dist",
/* 模块解析相关 */
// 允许使用 import 导入 CommonJS 模块
// "esModuleInterop": true,
// 强制文件名大小写一致
"forceConsistentCasingInFileNames": true,
// 确保每个文件都可以安全地被单独编译
"isolatedModules": true,
// 跳过对声明文件(.d.ts)的类型检查
"skipLibCheck": true
},
"references": [{ "path": "./tsconfig.node.json" }],
"include": ["src/**/*.ts", "src/index.ts"],
"exclude": ["src/**/__test__/*", "src/**/*.test.ts", "src/global.ts", "**/worker/*"]
}