Compare commits

...

1 commit
v5 ... main

Author SHA1 Message Date
David Gamero
b70bc4f58e
fix: add node types to tsconfig for TypeScript 6 compatibility (#251)
Some checks are pending
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
Integration test for setup-kubectl / Validate release and master branch (push) Waiting to run
Run prettify / Prettier Check (push) Waiting to run
Run unit tests. / build (push) Waiting to run
2026-04-17 07:01:02 +12:00

View file

@ -5,8 +5,10 @@
"moduleResolution": "NodeNext",
"rootDir": "./src",
"outDir": "./lib",
"types": ["node"],
"skipLibCheck": true,
"noEmit": true
},
"include": ["src"],
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"]
}