@types/node is a devDependency of the package but tsc only auto-picks it up locally due to root node_modules hoisting. CI runs with pnpm's isolated resolution so the dep isn't visible to tsc without an explicit types field — matching what packages/jobs/tsconfig.json does. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9 lines
160 B
JSON
9 lines
160 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src"]
|
|
}
|