mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-04-04 20:05:06 +08:00
* 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>
13 lines
293 B
JSON
13 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"]
|
|
}
|