mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2026-04-02 20:49:25 +00:00
* Fix failed ncc build (#1657) * Initial plan * Replace @vercel/ncc with esbuild to support @actions/core@3.0.0 (ESM-only) Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> * 📦️ Build * Replace esbuild with rimraf + rollup for packaging Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> * Remove rollup.config.js build artifact from git tracking Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> * Remove yarn, switch to npm Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> Co-authored-by: marocchino <marocchino@users.noreply.github.com> * 🔖 Version bump * 💚 Update condition * 🔧 Update tsconfig * Fix ERR_PACKAGE_PATH_NOT_EXPORTED with Node.js v24 and ESM-only @actions packages (#1659) * Initial plan * Initial plan for fixing ESM-only @actions packages build failure Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> * Fix build failure: update tsconfig and rollup config for ESM-only @actions packages Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
26 lines
702 B
JSON
26 lines
702 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"newLine": "lf",
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"outDir": "./dist",
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2022"
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts", "dist"],
|
|
"include": ["src"]
|
|
}
|