everything-webgpu / tsconfig.json
nyaaorick's picture
feat: publish everything-webgpu package, engine source and documentation
1944112 verified
Raw
History Blame Contribute Delete
787 Bytes
{
"//": "Type declarations only. The source stays plain ESM JavaScript; the JSDoc it already carries is the type source, so `npm run types` adds a typed surface for consumers without a rewrite or a build step on the runtime path.",
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "types",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable",
"WebWorker"
],
"skipLibCheck": true,
"strict": false,
"rootDir": "src"
},
"include": [
"src/engine/**/*.js",
"src/adapters/**/*.js",
"src/vite.js"
],
"exclude": [
"src/engine/engine-worker.js",
"vendor"
]
}