mirror of
https://github.com/Azure/k8s-set-context
synced 2025-09-23 12:08:06 +00:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
// babel.config.js
|
|
export default {
|
|
presets: [
|
|
'@babel/preset-env', // For handling ES modules
|
|
'@babel/preset-typescript' // For handling TypeScript
|
|
]
|
|
}
|