Don't emit d.ts file

This commit is contained in:
Andras Schmelczer 2025-07-06 16:32:25 +01:00
parent ad220d50de
commit 5f0f500725

View file

@ -15,7 +15,7 @@
"dom" "dom"
], ],
"module": "commonjs", "module": "commonjs",
"declaration": true, "declaration": false,
"noImplicitAny": false, "noImplicitAny": false,
"removeComments": false, "removeComments": false,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
@ -27,7 +27,11 @@
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true "allowSyntheticDefaultImports": true
}, },
"include": ["definitions.d.ts", "src/**/*", "node_modules/@webgpu/types/**/*"], "include": [
"definitions.d.ts",
"src/**/*",
"node_modules/@webgpu/types/**/*"
],
"compileOnSave": false, "compileOnSave": false,
"buildOnSave": false "buildOnSave": false
} }