forked from nekobc1998923/typescript-sdk-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (31 loc) · 1.37 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": {
// 指定 ECMAScript 目标版本 "ES3"(默认), "ES5", "ES6" / "ES2015", "ES2016", "ES2017" 或 "ESNext"。
"target": "ES5",
// 构建的目标代码删除所有注释,但是不会删除以 /!* 开头的版权信息
"removeComments": true,
// 启用所有严格类型检查选项。启用 --strict 相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict, --strictNullChecks, --strictFunctionTypes 和 --strictPropertyInitialization
"strict": true,
// 禁止对同一个文件的不一致的引用
"forceConsistentCasingInFileNames": true,
// 生成相应的 .d.ts文件
"declaration": true,
// 生成的 .d.ts文件路径,这里统一生成到types文件夹下
"declarationDir": "types",
// 报错时不生成输出文件
"noEmitOnError": true,
// baseUrl来告诉编译器到哪里去查找模块,所有非相对模块导入都会被当做相对于 baseUrl。
"baseUrl": ".",
// 非相对模块导入的路径映射配置
"paths": {
"@/*": ["src/*"],
"@docs/*":["docs/*"],
"@public/*":["public/*"],
"@test/*":["test/*"],
}
},
// 编译器默认包含的编译文件,src是源代码文件夹,test是jest测试代码文件夹
"include": ["src/**/*","test/**/*"],
// 编译器默认排除的编译文件
"exclude": ["node_modules"]
}