mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-04-06 09:46:55 +00:00
Some checks failed
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Integration test for setup-kubectl / Validate release and master branch (push) Has been cancelled
Run prettify / Prettier Check (push) Has been cancelled
Run unit tests. / build (push) Has been cancelled
* Migrate to ESM with esbuild, vitest and upgrade @actions/* to ESM-only versions * fix: update lockfile for npm ci compatibility --------- Co-authored-by: Suneha Bose <suneha.bose@gmail.com>
12 lines
293 B
JSON
12 lines
293 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"rootDir": "./src",
|
|
"outDir": "./lib",
|
|
"skipLibCheck": true,
|
|
"noEmit": true
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"]
|
|
}
|