mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-22 13:37:58 +01:00
20 lines
390 B
Plaintext
20 lines
390 B
Plaintext
{
|
|
"env": {
|
|
// transpile to common node & browser compatible js, keeping modules
|
|
"module": {
|
|
"presets": [
|
|
["latest", {
|
|
"modules": false
|
|
}]
|
|
]
|
|
},
|
|
// transpile to common node & browser compatible js, using commonjs
|
|
"main": {
|
|
"presets": ["latest"]
|
|
}
|
|
},
|
|
"plugins": [
|
|
"babel-plugin-transform-object-rest-spread"
|
|
]
|
|
}
|