mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 13:50:33 +00:00
Switch bundler from @vercel/ncc to rollup to support ESM-only @actions/toolkit v3 packages. This upgrades all @actions/* dependencies to their latest major versions and adds "type": "module" to package.json. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
574 B
JSON
21 lines
574 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "NodeNext",
|
|
"baseUrl": "./",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"newLine": "lf",
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
|
|
}
|