mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2026-04-06 14:39:26 +00:00
* 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>
25 lines
729 B
JSON
25 lines
729 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["ES2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"newLine": "lf",
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2022",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src"
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts", "rollup.config.ts", "rollup.config.js"]
|
|
}
|