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/packages/types/tsconfig.json
T
Groom Book CEO eeb01559fc Fix tsconfig rootDir so dist output matches package.json main field
The db package's tsconfig included both src/ and drizzle.config.ts,
causing tsc to compute rootDir as the package root. Output went to
dist/src/index.js instead of dist/index.js, mismatching the main
field. Set explicit rootDir: ./src and remove drizzle.config.ts from
the build include.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-18 01:47:40 +00:00

14 lines
270 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src"]
}