-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (34 loc) · 905 Bytes
/
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
{
"compilerOptions": {
/* 基础配置 */
"target": "esnext",
"module": "ES2015",
"removeComments": false,
"declaration": false,
"sourceMap": false,
/* 强类型检查配置 */
"strict": true,
"noImplicitAny": false,
/* 模块分析配置 */
"baseUrl": "./",
"outDir": "./dist",
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"paths": {
"src/*": ["src/*"],
"pages/*":["pages/*"],
"three/*": ["./node_modules/@types/three/*"],
"three/webgpu": ["./node_modules/three/build/three.webgpu.min.js"]
},
"lib": [
"ES2021",
"dom",
"DOM.Iterable"
],
},
"include": ["src"],
"exclude": [
"node_modules",
]
}