Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-10-03 00:11:53 +0300
committerMike Greiling <mike@pixelcog.com>2018-10-03 00:11:53 +0300
commit5f53269f0e4cb819c59ecd173496d6202feb7f7a (patch)
tree815bb6896b025ff7c25984cc9459ef88ac2bd6b7 /.babelrc
parentc0dffdff401ce6d78b9373bdbbc50ee242a2bf24 (diff)
Update babelrc with comments
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"
- ]
- }
- }
-}