aboutsummaryrefslogtreecommitdiffstats
path: root/.babelrc
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-02 15:08:07 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-02 15:08:07 +0100
commita5aa5e1380a0847eb33be3315d164fb9e0e23255 (patch)
treea1ea4b0f635cabb54d9cf028809d2f079727b9a1 /.babelrc
parentAdd instruction to install Franz with homebrew (#1134) (diff)
parentMerge branch 'develop' into release/5.0.0-beta.19 (diff)
downloadferdium-app-a5aa5e1380a0847eb33be3315d164fb9e0e23255.tar.gz
ferdium-app-a5aa5e1380a0847eb33be3315d164fb9e0e23255.tar.zst
ferdium-app-a5aa5e1380a0847eb33be3315d164fb9e0e23255.zip
Merge branch 'release/5.0.0-beta.19'
Diffstat (limited to '.babelrc')
-rw-r--r--.babelrc19
1 files changed, 7 insertions, 12 deletions
diff --git a/.babelrc b/.babelrc
index dc041f43b..3ea65a54e 100644
--- a/.babelrc
+++ b/.babelrc
@@ -1,19 +1,14 @@
1{ 1{
2 "presets": [ 2 "presets": [
3 [ 3 "@babel/env",
4 "babel-preset-env", 4 "@babel/react"
5 {
6 "targets": {
7 "electron": "1.7.2"
8 }
9 }
10 ],
11 "babel-preset-react"
12 ], 5 ],
13 "plugins": [ 6 "plugins": [
14 "transform-decorators-legacy", 7 ["@babel/plugin-proposal-decorators", { "legacy": true }],
15 "transform-flow-strip-types", 8 "@babel/proposal-export-default-from",
16 "transform-class-properties", 9 ["@babel/proposal-class-properties", { "loose": true }],
10 "@babel/proposal-throw-expressions",
11 "@babel/syntax-dynamic-import"
17 ], 12 ],
18 "sourceMaps": "inline" 13 "sourceMaps": "inline"
19} 14}