Files
pinme/tsconfig.test.json
junchi.zhang ce345f46e4 test: add CI-backed verification suite and harden create flow
- add Vitest, coverage, CLI, package, and mutation test commands
- add GitHub Actions verify, mutation, and audit workflows
- document testing policy and contributor commands
- replace curl template download with streamed retryable axios helper
- improve background install exit-code handling and tracker error reasons
2026-06-22 18:03:41 +08:00

16 lines
322 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": false,
"noEmit": true,
"types": ["node", "vitest/globals"]
},
"include": [
"bin/**/*.ts",
"test/**/*.ts",
"vitest.config.ts",
"vitest.mutation.config.ts"
],
"exclude": ["node_modules", "dist", "coverage", "reports"]
}