This repository has been archived on 2026-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
app/apps/web/tsconfig.json
T
groombook-ci[bot] 4de2e502d9 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>
2026-03-29 03:16:24 +00:00

16 lines
349 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": ["src"]
}