421607cf97
the inline `node -e` + `TOKEN=$(...)` approach broke because `core.getIDToken()` in @actions/core writes `::debug::` and `::add-mask::` to stdout, polluting the captured value. `node cli.ts gha token` uses `core.setOutput()` which writes to the $GITHUB_OUTPUT file instead of stdout. Made-with: Cursor
26 lines
690 B
JSON
26 lines
690 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "NodeNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ESNext"],
|
|
"types": ["vitest/globals"],
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"declaration": true,
|
|
"verbatimModuleSyntax": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"stripInternal": true,
|
|
"moduleDetection": "force",
|
|
"useUnknownInCatchVariables": true
|
|
},
|
|
"exclude": []
|
|
}
|