2019-05-28 19:44:17 +08:00
|
|
|
{
|
2019-07-23 17:03:35 +08:00
|
|
|
"compilerOptions": {
|
2019-07-27 07:49:19 +08:00
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
2019-12-25 07:17:02 +08:00
|
|
|
"module": "esnext",
|
2019-07-27 07:49:19 +08:00
|
|
|
"target": "es6",
|
2020-01-04 23:23:25 +08:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
2019-07-23 17:03:35 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
2019-07-27 23:13:00 +08:00
|
|
|
"esModuleInterop": true,
|
2019-07-23 17:03:35 +08:00
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
2019-09-14 23:31:03 +08:00
|
|
|
"experimentalDecorators": true
|
2019-07-23 17:03:35 +08:00
|
|
|
},
|
2020-01-29 21:53:08 +08:00
|
|
|
"include": [
|
|
|
|
"src",
|
|
|
|
"typedefs",
|
|
|
|
// Adding WebGPU types via "typeRoots" doesn't work for an unknown reason.
|
|
|
|
"node_modules/@webgpu/types/dist/index.d.ts"
|
|
|
|
]
|
2019-07-23 17:03:35 +08:00
|
|
|
}
|