This repository has been archived on 2026-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pi-web/tsconfig.build.json
Federico Jaramillo Martinez dfab743a71 fix: harden cross-platform release builds
Skip direct POSIX entrypoint execution on Windows CI and prevent test-support modules from entering clean build or npm package output.
2026-07-11 20:30:51 +02:00

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"]
}