3
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2026-06-22 04:40:28 +00:00

upgrade module to esm and update dependencies (#2463)

* upgrade module to esm so I can update dependencies

* fix ci failures
This commit is contained in:
Aiqiao Yan 2026-06-16 17:10:58 -04:00 committed by GitHub
parent 537c7ef99c
commit d914b262ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
57 changed files with 29272 additions and 24100 deletions

View file

@ -1,17 +1,13 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6"
],
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true
"esModuleInterop": true
},
"exclude": ["__test__", "lib", "node_modules"]
"exclude": ["__test__", "lib", "node_modules", "jest.config.ts"]
}