-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
62 lines (62 loc) · 1.57 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
61
62
{
// 编译选项
"compilerOptions": {
// 编译输出目标ES版本
"target": "esnext",
// 采用的模块系统
"module": "esnext",
// 是否使用严格模式
"strict": true,
"jsx": "preserve",
// 从tslib导入外部帮助库
"importHelpers": true,
// 如何处理模块
"moduleResolution": "node",
// 是否启用装饰器
"experimentalDecorators": true,
"esModuleInterop": true,
// 允许从没有设置默认导出的模块中默认导入
"allowSyntheticDefaultImports": true,
// 是否包含可以用于debug的sourceMap
"sourceMap": true,
// 解析非相对模块名的基准目录
"baseUrl": ".",
/**********以下是自己加的一些配置************/
// 忽略 this 的类型检查, Raise error on this expressions with an implied any type.
"noImplicitThis": false,
// 允许编译javascript文件
"allowJs": true,
// 给错误和消息设置样式,使用颜色和上下文。
"pretty": true,
/****************自己加的结束*******************/
// 设置引入的定义文件
"types": [
"webpack-env"
],
// 指定特殊模块的路径
"paths": {
"@/*": [
"src/*"
]
},
// 编译过程中需要引入的库文件的列表
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
// ts管理的文件
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
// ts排除的文件
"exclude": [
"node_modules"
]
}