Files
rxminder/tsconfig.json
William Valentin c4152c9061 fix: clean up tsconfig.json and remove Playwright references
- Remove @playwright/test from types array since Playwright was removed
- Update test documentation to use Jest-based tools instead
- Verify TypeScript compilation still works correctly
- Maintains working Jest types for existing tests
2025-09-08 22:31:18 -07:00

24 lines
570 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "jest"],
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./*"]
},
"allowImportingTsExtensions": true,
"noEmit": true
}
}