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