js-openstack-lib/.babelrc
Monty Taylor 7f843d7ecb Update babel, webpack, karma, jasmine and istanbul
Update to babel v7 and webpack v4

Remove runtime depend on corejs-2 which is
unsupported. Just switch to runtime which requires polyfills be
provided by the end user.

Remove NSP - the service is being shut down and the important bits
are built in to npm now.

istanbul has been replaced by the nyc runner. Update karma
to latest.

Update yaml-loader and json-loader

Disable browser testing for now - we'll bring it back in a followup.

Change-Id: I45d1f77bb43e5d67f4154c5149fac77b853e3686
2020-06-12 12:35:09 -05:00

12 lines
165 B
Plaintext

{
"presets": [
"@babel/preset-env"
],
"plugins": ["@babel/plugin-transform-runtime"],
"env": {
"test": {
"plugins": [ "istanbul" ]
}
}
}