-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 953 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
36
37
{
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
"DOM"
],
"module": "ESNext", // Use ESNext for module system
"moduleResolution": "bundler", // Use module resolution for bundlers like Vite
"allowImportingTsExtensions": true, // Allow .ts extensions in imports
"noEmit": true, // Do not emit output (Vite handles this)
"incremental": true,
"strict": false,
"noImplicitAny": true,
"strictFunctionTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"sourceMap": true,
"removeComments": true,
"types": [
"@webgpu/types",
"node"
]
},
"exclude": [
"node_modules",
"dist",
"vite.config.ts",
"assets"
]
}