mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 09:39:11 +08:00
30 lines
632 B
JSON
30 lines
632 B
JSON
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"lib": [
|
|
"ES2018",
|
|
"ES2019",
|
|
"ES2020",
|
|
"ESNext"
|
|
],
|
|
"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
|
|
}
|
|
}
|