-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 775 Bytes
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 775 Bytes
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
{
"compilerOptions": {
"strictPropertyInitialization": false,
"target": "ESNext",
"allowJs": true,
"useDefineForClassFields": true,
"module": "ESNext",
"rootDir": "src",
"moduleResolution": "Node",
"strict": true,
"baseUrl": ".",
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"noEmit": true,
"paths": {
"vue": [
"node_modules/vue/types"
],
"@/*": [
"src/*"
]
},
"types": [
"vite-plugin-glsl/ext"
]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue","./typings"],
"references": [{ "path": "./tsconfig.node.json" }]
}