The scripts/ workspace member had no tsconfig.json, so 'tsc --noEmit' printed help text and exited 1, breaking 'pnpm typecheck' across the entire monorepo.
11 lines
192 B
JSON
11 lines
192 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"noEmit": true
|
|
},
|
|
"include": ["*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|