Archived
Skip direct POSIX entrypoint execution on Windows CI and prevent test-support modules from entering clean build or npm package output.
13 lines
289 B
JSON
13 lines
289 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": false,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/cli.ts", "src/server/**/*.ts"],
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.testSupport.ts"]
|
|
}
|