tercul-frontend/tsconfig.node.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

14 lines
364 B
JSON

{
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"types": ["node"]
},
"include": ["vite.config.ts", "server/**/*.ts", "shared/**/*.ts"]
}