mirror of
https://github.com/glitternetwork/pinme.git
synced 2026-08-28 09:37:49 +08:00
ce345f46e4
- 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
16 lines
322 B
JSON
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"]
|
|
}
|