config.ts imports child_process and fs — declare types: ['node'] explicitly instead of relying on root tsconfig inheritance.
11 lines
195 B
JSON
11 lines
195 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/**/*.test.ts"]
|
|
}
|