1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-01 20:29:01 +00:00
foris-js/babel.config.js
Maciej Lenartowicz 0915d477fe Global alert
2019-10-30 16:06:53 +00:00

26 lines
563 B
JavaScript

module.exports = {
presets: [
"@babel/preset-env",
"@babel/preset-react",
],
plugins: [
"@babel/plugin-transform-runtime",
"@babel/plugin-syntax-export-default-from",
["module-resolver", {
root: ["./src"],
alias: {
test: "./test",
underscore: "lodash",
},
}],
],
env: {
development: {
ignore: ["**/__tests__", "./scripts"],
},
test: {
ignore: ["./scripts"],
},
},
};