fix(scripts): add tsconfig.json — fixes pnpm typecheck failure

The scripts/ workspace member had no tsconfig.json, so 'tsc --noEmit'
printed help text and exited 1, breaking 'pnpm typecheck' across the
entire monorepo.
This commit is contained in:
saravanakumardb1 2026-03-21 15:55:27 -07:00
parent 2c6397272f
commit 22780b0e7e

10
scripts/tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"noEmit": true
},
"include": ["*.ts"],
"exclude": ["node_modules", "dist"]
}