-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
64 lines (64 loc) · 1.88 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
63
64
{
"compilerOptions": {
"baseUrl": "./",
// 这里需要配置
"paths": {
"@src/*": [
"./src/*"
],
// 这里需要配置
"@core/*": [
"./core/*"
]
// 这里需要配置
},
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
//用于指定是否启动所有类型检查,如果设为true这会同时开启下面这几个严格检查,默认为false
"alwaysStrict": true,
//指定始终以严格模式检查每个模块,并且在编译之后的JS文件中加入"use strict"字符串,用来告诉浏览器该JS为严格模式
"noUnusedLocals": true,
//用于检查是否有定义了但是没有使用变量,对于这一点的检测,使用ESLint可以在你书写代码的时候做提示,你可以配合使用,他的默认值为false
"noUnusedParameters": true,
//用于检测是否在函数中没有使用的参数
"noImplicitReturns": false,
//用于检查函数是否有返回值,设为true后,如果函数没有返回值则会提示,默认为false
"noFallthroughCasesInSwitch": true
//用于检查switch中是否有case没有使用break跳出switch,默认为false
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/**/*.ts",
"config/routes.ts",
"core/**/*.ts",
"core/**/*.d.ts",
"core/**/*.tsx",
"core/**/*.vue",
"core/**/*.ts"
],
"references": [
{
"path": "./tsconfig.node.json"
}
],
"extends": "./tsconfig.extends.json"
}