mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 09:39:11 +08:00
1ee9c9d01d
* upgrade versions to latest * remove usage of ts-schema-autogen * fix: update pnpm sources * update build/output * use node20 * fix: run-install array output * fix: maintain behaviour for parseRunInstall, error messages * fix: another edge case for input.args * fix: use zod for input validation * fix: use zod.infer for exported RunInstall types * fix: remove @types/js-yaml --------- Co-authored-by: Zoltan Kochan <z@kochan.io>
27 lines
578 B
JSON
27 lines
578 B
JSON
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"resolveJsonModule": true,
|
|
"lib": [
|
|
"ES2023"
|
|
],
|
|
"outDir": "./dist/tsc",
|
|
"preserveConstEnums": true,
|
|
"incremental": false,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"importHelpers": false,
|
|
"strict": true,
|
|
"pretty": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
}
|
|
}
|