forked from jzfai/vue3-admin-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
59 lines (59 loc) · 1.97 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// 启用所有严格类型检查选项。
//启用 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict, --strictNullChecks和 --strictFunctionTypes和--strictPropertyInitialization。
"strict": true,
// 允许编译器编译JS,JSX文件
"allowJs": false,
// 允许在JS文件中报错,通常与allowJS一起使用
"checkJs": false,
// 允许使用jsx
"jsx": "preserve",
"declaration": true,
//移除注解
"removeComments": true,
//不可以忽略any
"noImplicitAny": false,
//关闭 this 类型注解提示
"noImplicitThis": true,
//null/undefined不能作为其他类型的子类型:
//let a: number = null; //这里会报错.
"strictNullChecks": true,
//生成枚举的映射代码
"preserveConstEnums": true,
//根目录
//输出目录
"outDir": "./ts-out-dir",
//是否输出src2.js.map文件
"sourceMap": false,
//变量定义了但是未使用
"noUnusedLocals": false,
//是否允许把json文件当做模块进行解析
"resolveJsonModule": true,
//和noUnusedLocals一样,针对func
"noUnusedParameters": false,
// 模块解析策略,ts默认用node的解析策略,即相对的方式导入
"moduleResolution": "node",
//允许export=导出,由import from 导入
"esModuleInterop": true,
//忽略所有的声明文件( *.d.ts)的类型检查。
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"~/*": ["typings/*"]
},
//指定默认读取的目录
//"typeRoots": ["./node_modules/@types/", "./types"],
"lib": ["ES2018", "DOM"]
},
//"files": [],
//include包含文件夹会被ts进行读取
"include": ["src", "typings", "auto-imports.d.ts"]
//exclude 可以去除include中指定的文件,不能去除file指定的文件
// "exclude": [
//// "src/src1.ts"
// ]
}