fix: remove verbatimModuleSyntax to resolve CI TypeScript build errors

- Remove verbatimModuleSyntax: true from tsconfig.app.json
- This option caused async/await syntax errors in CI/CD environment
- Build now works consistently across local and CI environments
- Fixes TS1308 errors on await expressions in updateService.ts
This commit is contained in:
Tomas Dvorak
2026-02-27 19:24:05 +01:00
parent ecd31f4e3b
commit 90f0b90cc7
-1
View File
@@ -17,7 +17,6 @@
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",