-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 1.43 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
{
"compilerOptions": {
"target": "es5", // 目标语言的版本
"lib": ["dom", "dom.iterable", "esnext"],
// 编译时引入的 ES 功能库,包括:es5 、es6、es7、dom 等。
// 如果未设置,则默认为: target 为 es5 时: ["dom", "es5", "scripthost"]
//target 为 es6 时: ["dom", "es6", "dom.iterable", "scripthost"]
"allowJs": true, // 允许编译器编译JS,JSX文件
"checkJs": true, //对JS文件进行检查
"skipLibCheck": true,
"esModuleInterop": true, // 允许export=导出,由import from 导入
"allowSyntheticDefaultImports": true, //允许使用 import xxx from 'xxx' 的形式来引入模块
"strict": true, // 开启所有严格的类型检查
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true, // 防止switch语句贯穿(即如果没有break语句后面不会执行)
"experimentalDecorators": true, // 开启装饰器
"module": "esnext", // 生成代码的模板标准
"moduleResolution": "node", // 模块解析策略,ts默认用node的解析策略,即相对的方式导入
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true, // 不输出文件,即编译后不会生成任何js文件
"jsx": "react",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"less/*": ["./src/assets/styles/less/*"]
}
},
"include": ["src", "**/*.ts", "**/*.tsx"],
"exclude": ["./node_modules"]
}