-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
60 lines (60 loc) · 1.99 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
// "allowJs": true,
"allowSyntheticDefaultImports": true, // 允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
"baseUrl": ".", // 解析非相对模块名的基准目录
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"importHelpers": true, // 从 tslib 导入辅助工具函数(比如 __extends, __rest等)
"module": "commonjs", // 指定生成哪个模块系统代码
"moduleResolution": "node", // 决定如何处理模块。
"strict": true, // 启用所有严格类型检查选项。 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict,--strictNullChecks和 --strictFunctionTypes和--strictPropertyInitialization。
"noImplicitAny": false, //关闭implicitly has an 'any' type
"jsx": "preserve", // 支持jsx语法
// "sourceMap": true, // 生成相应的 .map文件。
"outDir": "types",
"skipLibCheck": true, // 忽略所有的声明文件( *.d.ts)的类型检查。
"target": "esnext", // 指定ECMAScript目标版本 esnext
"types": [ // 要包含的类型声明文件名列表
"node",
// "vite/client"
],
"typeRoots": [
"../node_modules/@types"
],
"isolatedModules": true,
"paths": { // 模块名到基于 baseUrl的路径映射的列表。
"@/*": [
"src/*"
],
"c/*": [
"components/*"
],
"_c/*": [
"src/components/*"
],
"types/*": [
"components/types/*"
]
},
"lib": [ // 编译过程中需要引入的库文件的列表。
// "ESNext",
// "DOM",
// "DOM.Iterable",
// "ScriptHost"
"es2017",
"es7",
"es6",
"dom"
]
},
"include": [ // 解析的文件
"components/**/*",
"src/**/*",
"components/types/**/*"
],
"exclude": [
"node_modules"
]
}