Skip to content

Commit d85d794

Browse files
authored
Merge pull request #523 from korthout/korthout-501-node-24
Use node 24
2 parents 2e5f3e2 + b503286 commit d85d794

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ outputs:
171171
Whether or not the changes could be backported successfully to all targets - broken down by target.
172172
Follows the pattern '{{label}}=true|false'.
173173
runs:
174-
using: "node20"
174+
using: "node24"
175175
main: "dist/index.js"
176176
branding:
177177
icon: "copy"

tsconfig.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"compilerOptions": {
3-
"target": "es2022", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
4-
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
5-
"outDir": "./lib", /* Redirect output structure to the directory. */
6-
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
7-
"strict": true, /* Enable all strict type-checking options. */
8-
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
9-
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
3+
"target": "ES2024",
4+
"module": "commonjs",
5+
"outDir": "./lib",
6+
"rootDir": "./src",
7+
"strict": true,
8+
"noImplicitAny": true,
9+
"esModuleInterop": true,
1010
"skipLibCheck": true,
1111
"forceConsistentCasingInFileNames": true,
1212
"noUnusedLocals":true

0 commit comments

Comments
 (0)