-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.68 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
{
"compilerOptions": {
// 重定向输出目录。
"outDir": "dist",
// 指定生成哪个模块系统代码
"module": "commonjs",
// 指定ECMAScript目标版本
"target": "es6",
// 生成相应的 .map文件
"sourceMap": true,
// 允许编译javascript文件。
"allowJs": true,
// 模块解析策略
"moduleResolution": "node",
// 指定文件输入的根目录,仅用来控制输出的目录结构
"rootDir": "src",
// 禁止对同一个文件的不一致的引用
"forceConsistentCasingInFileNames": true,
// 允许从没有设置默认导出的模块中默认导入。这并不影响代码的显示,仅为了类型检查。
// "allowSyntheticDefaultImports": true,
// 不是函数的所有返回路径都有返回值时报错。
// "strict": true,
"noImplicitReturns": true,
// 当 this表达式的值为 any类型的时候,生成一个错误
"noImplicitThis": true,
// 在表达式和声明上有隐含的 any类型时报错。
"noImplicitAny": true,
// 在严格的 null检查模式下, null和 undefined值不包含在任何类型里,只允许用它们自己和 any来赋值(有个例外, undefined可以赋值到 void)
"strictNullChecks": true,
// 阻止 --noImplicitAny对缺少索引签名的索引对象报错
"suppressImplicitAnyIndexErrors": true,
// 若有未使用的局部变量则抛错。
"noUnusedLocals": true,
// 启用实验性的ES装饰器。
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"*": ["node_modules/*", "typings/*"]
}
},
"include": ["src/**/*", "typings/**/*"],
"exclude": ["node_modules", "dist"]
}