-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (41 loc) · 2.38 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" : "ES5", // 编译成哪个版本的 es
"module" : "ESNext", // 指定生成哪个模块系统代码
"lib" : ["dom", "dom.iterable", "esnext"], // 编译过程中需要引入的库文件的列表
"allowJs" : true, // 允许编译 js 文件
"jsx" : "react-jsx", // 在 .tsx 文件里支持 JSX
"isolatedModules": true, // 提供额外的一些语法检查,如文件没有模块导出会报错
"strict" : true, // 启用所有严格类型检查选项
// 模块解析选项
"moduleResolution" : "node", // 指定模块解析策略
"esModuleInterop" : true, // 支持 CommonJS 和 ES 模块之间的互操作性
"resolveJsonModule": true, // 支持导入 json 模块
"baseUrl" : "./", // 根路径
"paths" : { // 路径映射,与 baseUrl 关联
"src/*" : ["src/*"],
"components/*": ["src/components/*"],
"utils/*" : ["src/utils/*"],
"pages/*" : ["src/pages/*"],
"actions/*" : ["src/actions/*"],
"assets/*" : ["src/assets/*"],
"services/*" : ["src/services/*"],
"app/*" : ["src/app/*"],
"reducer/*" : ["src/reducer/*"],
"features/*" : ["src/features/*"],
"api/*" : ["src/api/*"],
},
// 实验性选项
"experimentalDecorators": true, // 启用实验性的ES装饰器
"emitDecoratorMetadata" : true, // 给源码里的装饰器声明加上设计类型元数据
// 其他选项
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true, // 禁止对同一个文件的不一致的引用
"skipLibCheck" : true, // 忽略所有的声明文件( *.d.ts)的类型检查
"allowSyntheticDefaultImports" : true, // 允许从没有设置默认导出的模块中默认导入
"noEmit" : true // 只想使用tsc的类型检查作为函数时(当其他工具(例如Babel实际编译)时)使用它
},
"exclude": ["node_modules"],
"include": ["src"]
}