mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
23 lines
626 B
JSON
23 lines
626 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"typedefs",
|
|
// Adding WebGPU types via "typeRoots" doesn't work for an unknown reason.
|
|
"node_modules/@webgpu/types/dist/index.d.ts"
|
|
]
|
|
}
|