mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 05:39:40 +02:00
Define compiler options locally instead of extending shared-tsconfig to fix drizzle-orm type compatibility issues. Also add missing shared-vite-config dependency to skilltree/web. Fixed backends: - calendar, chat, clock, contacts, nutriphi - picture, presi, questions, skilltree, todo Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
677 B
JSON
27 lines
677 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"rootDir": "./src",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|