1
0
mirror of https://gitea.com/actions/download-artifact.git synced 2026-02-02 12:24:30 +07:00

Upgrade jest and typescript

This commit is contained in:
Daniel Kennedy
2026-01-30 14:15:49 -05:00
parent 43c2394920
commit 1d636af56d
2 changed files with 18 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"target": "ES2022",
"module": "NodeNext",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"moduleResolution": "node",
"moduleResolution": "NodeNext",
"esModuleInterop": true
},
"exclude": ["node_modules", "**/*.test.ts", "jest.config.ts", "__tests__"]