tercul-frontend/tsconfig.json
Damir Mukimov 8e6df7d0cc
feat: Add missing shared schema types and fix TypeScript imports
- Add AuthorWithStats and AnnotationWithUser schemas with relations
- Add corresponding TypeScript type exports
- Update tsconfig.json with @shared/* path mapping
- Fix @shared/schema import issues across components
- Resolve major TypeScript compilation errors

Next: Fix remaining type mismatches and component prop issues
2025-11-30 14:55:58 +01:00

29 lines
791 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"types": ["jest", "@testing-library/jest-dom"],
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": ["./client/src/*"],
"@shared/*": ["./shared/*"]
}
},
"include": ["src", "client", "server", "shared", "playwright.config.ts"],
"exclude": ["node_modules", "dist"]
}