]> Untitled Git - lemmy-ui.git/blob - .babelrc
fix submodule error
[lemmy-ui.git] / .babelrc
1 {
2   "compact": false,
3   "presets": [
4     [
5       "@babel/preset-env",
6       {
7         "loose": true,
8         "targets": {
9           "browsers": ["ie >= 11", "safari > 10"]
10         }
11       }
12     ],
13     ["@babel/typescript", { "isTSX": true, "allExtensions": true }]
14   ],
15   "plugins": [
16     "@babel/plugin-transform-runtime",
17     ["babel-plugin-inferno", { "imports": true }],
18     ["@babel/plugin-proposal-class-properties", { "loose": true }]
19   ]
20 }