winter/modules/system/.babelrc
Ben Thomson e84933775d
Add "mix:run" command (#698)
Allows running of scripts defined in the package.json of a Mix package, through Artisan.
2022-09-17 11:40:00 +08:00

18 lines
395 B
Plaintext

{
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime",
[
"module-resolver", {
"root": ["./tests/js"],
"alias": {
"helpers": "./helpers",
"snowboard": "../../modules/system/assets/js/snowboard",
}
}
]
]
}