fix(web): add noEmit to tsconfig for allowImportingTsExtensions compatibility

TS5096: allowImportingTsExtensions requires noEmit or emitDeclarationOnly.
This was added by the bot but noEmit was not set, breaking pnpm build.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
groombook-ci[bot]
2026-03-29 00:48:10 +00:00
committed by Flea Flicker
parent 06c840ff0e
commit 4de2e502d9
+1
View File
@@ -8,6 +8,7 @@
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": ["src"]