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] 3e4e57fa0b fix(test): sync Appointments.test.tsx with portal refactor
- Update import to use .tsx source instead of outdated .js
- Change header assertions from X-Impersonation-Session-Id to Authorization Bearer
- Change confirmed badge text from "✓ Confirmed" to "Confirmed"
- Add allowImportingTsExtensions to tsconfig (required for .tsx imports with bundler moduleResolution)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-29 03:16:24 +00:00

15 lines
329 B
JSON

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