package maintenance

- update to TS6
- replace ncc by rollup, which seems to now be the recommended workflow according to <https://github.com/actions/typescript-action>
- remove buildjet provider, as they are shutting down, see <https://buildjet.com/for-github-actions/blog/we-are-shutting-down>
This commit is contained in:
Arpad Borsos
2026-06-06 14:02:52 +02:00
parent e18b497796
commit be9aa033ee
15 changed files with 667122 additions and 501283 deletions
+11 -3
View File
@@ -2,20 +2,28 @@
"compilerOptions": {
"noEmitOnError": false,
"diagnostics": true,
"lib": ["esnext"],
"lib": ["es2024"],
"types": ["node"],
"target": "es2020",
"target": "es2024",
"resolveJsonModule": true,
"ignoreDeprecations": "6.0",
"moduleResolution": "node",
"module": "esnext",
"esModuleInterop": true,
"incremental": true,
"tsBuildInfoFile": ".build/tsconfig.build.tsbuildinfo",
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
"noImplicitReturns": true,
"outDir": ".build"
},
"include": ["src", "rollup.config.ts"],
"exclude": ["dist"]
}