-
Notifications
You must be signed in to change notification settings - Fork 73
/
tsconfig.base.json
50 lines (50 loc) · 1.76 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
48
49
50
{
//设置files为空,则不会自动扫描默认目录,也就是只会扫描include配置的目录
"files": [],
"compilerOptions": {
"target": "esnext",
"module": "esnext",
//启用所有严格类型检查选项。
//启用 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict, --strictNullChecks和 --strictFunctionTypes和--strictPropertyInitialization。
"strict": true,
// 允许编译器编译JS,JSX文件
"allowJs": false,
// 允许在JS文件中报错,通常与allowJS一起使用
"checkJs": false,
// 允许使用jsx
"jsx": "preserve",
"declaration": true,
//移除注解
"removeComments": true,
//不可以忽略any
"noImplicitAny": false,
//关闭 this 类型注解提示
"noImplicitThis": true,
//null/undefined不能作为其他类型的子类型:
//let a: number = null; //这里会报错.
"strictNullChecks": true,
//生成枚举的映射代码
"preserveConstEnums": true,
//根目录
//输出目录
"outDir": "./ts-out-dir",
//是否输出src2.js.map文件
"sourceMap": false,
//变量定义了但是未使用
"noUnusedLocals": false,
//是否允许把json文件当做模块进行解析
"resolveJsonModule": true,
//和noUnusedLocals一样,针对func
"noUnusedParameters": false,
// 模块解析策略,ts默认用node的解析策略,即相对的方式导入
"moduleResolution": "node",
//允许export=导出,由import from 导入
"esModuleInterop": true,
//忽略所有的声明文件( *.d.ts)的类型检查。
"skipLibCheck": true,
"baseUrl": ".",
//指定默认读取的目录
//"typeRoots": ["./node_modules/@types/", "./types"],
"lib": ["ES2018", "DOM"]
}
}