-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
38 lines (38 loc) · 1.33 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
{
"compilerOptions": {
"rootDir": "./", // ts 配置文件所在目录
"outDir": "./dist", // 编译后的文件存放目录
"declaration": true, // 生成声明文件
"pretty": true, // 编译后的文件格式化
"target": "esnext", // 编译后的代码类型
"removeComments": true, // 删除注释
"useDefineForClassFields": true, // 类的字段使用 define 来定义
"module": "esnext", // 模块类型
"moduleResolution": "node", // 模块解析器
"strict": true, // 严格模式
"jsx": "preserve", // jsx 编译方式
"sourceMap": true, // 源码映射
"resolveJsonModule": true, // 解析 json 文件
"isolatedModules": true, // 单文件模块
"esModuleInterop": true, // es6 模块化
"lib": ["esnext", "dom", "dom.iterable"], // 包含的库
"allowJs": true, // 允许使用 js
"noImplicitAny": false, // 不允许隐式any
"skipLibCheck": true, // 跳过库检查
"baseUrl": ".", // 基础路径
// 路径映射
"paths": {
// "@": ["./src"],
"@/*": ["src/*"]
}
},
// 包含的文件
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"types/**/*.d.ts"
],
"exclude": ["node_modules", "dist", "**/*.js"] // 排除的文件
// "references": [{ "path": "./tsconfig.node.json" }] // 引用的配置文件
}