-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
47 lines (45 loc) · 1.73 KB
/
tsconfig.base.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
45
46
47
{
"compilerOptions": {
// 指定ECMAScript目标版本
"target": "ESNext",
"sourceMap": false,
// 产物不消除注释
"removeComments": false,
"useDefineForClassFields": true,
// 用于指定在导入默认导出时是否应将其转换为具名导出或命名空间导入
"esModuleInterop": true,
// 与 esModuleInterop: true 配合允许从 commonjs 的依赖中直接按 import XX from 'xxx' 的方式导出 default 模块
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
// 指定生成哪个模块系统代码
"module": "ESNext",
"lib": [],
// 忽略所有的声明文件( *.d.ts)的类型检查
"skipLibCheck": true,
/* Bundler mode */
// 用于选择模块解析策略,有'node'和'classic'两种类型
"moduleResolution": "node",
"allowImportingTsExtensions": true,
// 允许引入 .json 模块
"resolveJsonModule": true,
// 在使用 const enum 或隐式类型导入时受到 TypeScript 的警告
"isolatedModules": true,
"noEmit": true,
// 指定 jsx 代码的生成: 'preserve', 'react-native', or 'react'
"jsx": "preserve",
/* Linting */
// 启用所有严格类型检查选项。
// 启用 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict,
// --strictNullChecks和 --strictFunctionTypes和--strictPropertyInitialization。
"strict": true,
// 默认false,是否检测定义了但是没使用的变量
"noUnusedLocals": true,
// 用于检查是否有在函数体中没有使用的参数
"noUnusedParameters": true,
// 用于检查switch中是否有case没有使用break跳出switch
"noFallthroughCasesInSwitch": true,
// 解析非相对模块名的基准目录
"baseUrl": "."
}
}