-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (45 loc) · 1.14 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
{
"compilerOptions": {
// 指定ECMAScript目标版本
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
// 决定如何处理模块
"moduleResolution": "node",
// 启用所有严格类型检查选项
"strict": true,
// 在.tsx文件里支持JSX
"jsx": "preserve",
// 生成相应的 .map文件
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
// 允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查
"allowSyntheticDefaultImports": true,
// 编译过程中需要引入的库文件的列表
"lib": [
"esnext",
"dom",
"DOM.Iterable",
"ScriptHost"
],
// 解析非相对模块名的基准目录
"baseUrl": ".",
// 模块名到基于 baseUrl的路径映射的列表
"paths": {
"@/*": [
"src/*"
]
},
"types": ["vite-plugin-svg-icons/client"],
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.jsx",
"src/**/*.vue"
],
"exclude": ["node_modules"]
}