summaryrefslogtreecommitdiff
path: root/.babelrc
diff options
context:
space:
mode:
Diffstat (limited to '.babelrc')
-rw-r--r--.babelrc35
1 files changed, 0 insertions, 35 deletions
diff --git a/.babelrc b/.babelrc
deleted file mode 100644
index 83172a47753..00000000000
--- a/.babelrc
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "presets": [
- [
- "@babel/preset-env",
- {
- "modules": false,
- "targets": {
- "ie": "11"
- }
- }
- ]
- ],
- "plugins": [
- "@babel/plugin-syntax-dynamic-import",
- "@babel/plugin-syntax-import-meta",
- "@babel/plugin-proposal-class-properties",
- "@babel/plugin-proposal-json-strings"
- ],
- "env": {
- "karma": {
- "plugins": ["babel-plugin-rewire"]
- },
- "coverage": {
- "plugins": [
- [
- "babel-plugin-istanbul",
- {
- "exclude": ["spec/javascripts/**/*", "app/assets/javascripts/locale/**/app.js"]
- }
- ],
- "babel-plugin-rewire"
- ]
- }
- }
-}