fix: add node types to tsconfig for TypeScript 6 compatibility (#251)
Some checks failed
Run prettify / Prettier Check (push) Has been cancelled
Run unit tests. / build (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Integration test for setup-kubectl / Validate release and master branch (push) Has been cancelled

This commit is contained in:
David Gamero 2026-04-16 15:01:02 -04:00 committed by GitHub
parent 6522dcd602
commit b70bc4f58e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"]
}