k8s-set-context/tsconfig.json
Tatsinnit 959bbfb69a
Some checks failed
CodeQL Advanced / Analyze (javascript-typescript) (push) Failing after 2s
Run Prettify / Prettier Check (push) Failing after 1s
Run Integration Tests / kubeconfig-method-integration-test (push) Failing after 3s
Run Unit Tests / unit-test (push) Failing after 2s
Fix for client-node ESM v Commonjs issue. (#132)
Signed-off-by: Tatsat Mishra <tamishra@microsoft.com>
2025-03-19 11:12:40 -04:00

15 lines
480 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext", // or "NodeNext" depending on your setup
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"paths": {
"@actions/core": ["node_modules/@actions/core"],
"@kubernetes/client-node": ["node_modules/@kubernetes/client-node"]
}
},
"exclude": ["node_modules", "tests", "src/**/*.test.ts"]
}