-
Notifications
You must be signed in to change notification settings - Fork 468
/
tsconfig.json
38 lines (38 loc) · 1.25 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
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM"],
// 允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
"allowSyntheticDefaultImports": true,
// 解析非相对模块名的基准目录
"baseUrl": ".",
"rootDir": ".",
// 从 tslib 导入辅助工具函数(比如 __extends, __rest等)
"importHelpers": true,
// 指定生成哪个模块系统代码
"module": "esnext",
// 决定如何处理模块。
"moduleResolution": "node",
// 启用所有严格类型检查选项。
// 启用 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict,
// --strictNullChecks和 --strictFunctionTypes和--strictPropertyInitialization。
"strict": true,
"noImplicitAny": false,
// 生成相应的 .map文件。
"sourceMap": false,
// 忽略所有的声明文件( *.d.ts)的类型检查。
"skipLibCheck": true,
"paths": {
"@shared/*": ["packages/shared/*"]
},
"allowJs": true,
"esModuleInterop": true
},
"include": [
"packages/global.d.ts",
"packages/**/*.ts",
"examples/**/**.ts",
"examples/**/**.vue"
],
"exclude": ["./**/node_modules", "./**/dist"]
}