* allow module import for Parse Cloud * Update .babelrc * catch esm error * Update ParseServer.js * add tests * Update CHANGELOG.md * Update CloudCode.spec.js Co-authored-by: Manuel <5673677+mtrezza@users.noreply.github.com>
16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
{
|
|
"plugins": [
|
|
"@babel/plugin-transform-flow-strip-types",
|
|
"@babel/plugin-proposal-object-rest-spread"
|
|
],
|
|
"presets": [
|
|
["@babel/preset-env", {
|
|
"targets": {
|
|
"node": "12"
|
|
},
|
|
"exclude": ["proposal-dynamic-import"]
|
|
}]
|
|
],
|
|
"sourceMaps": "inline"
|
|
}
|