gitbeaker/.babelrc
Justin Dalrymple b65e5ec287 Lots of updates
- Updated to the latest version of babel
- Added the correct export of each of the services, their combined namespaces and the full initialized api
- Added functionality to the Projects api and the Users api
2018-03-16 20:40:52 -04:00

13 lines
228 B
Plaintext

{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "9.80"
}
}]
],
"plugins": [
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-export-namespace-from"
]
}