learning_ai_common_plat/scripts/tsconfig.json
saravanakumardb1 22780b0e7e 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.
2026-03-21 15:55:27 -07:00

11 lines
192 B
JSON

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