mirror of
https://github.com/Azure/k8s-set-context
synced 2025-09-23 12:08:06 +00:00
15 lines
480 B
JSON
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"]
|
|
}
|