joinlemmy-site/.babelrc
Dessalines 0aad0392bc
Inferno rewrite (#31)
* Initial inferno commit.

* Fixing husky

* Fixing submodule

* Removing extra dockerfile lines

* Some cleanup, refactoring into components

* Testing out a drone build.

* Removing lemmy-docs

* Removing gitmodules

* Trying to add again

* Don't init.

* check folder.

* check folder 2.

* Removing lemmy-docs again

* Adding lemmy-docs again

* Adding submodule init.

* Removing ls.

* Trying a first docker deploy.

* Removing arm64 build.

* Upgrading deps, fixing links.
2021-03-15 13:18:03 -04:00

20 lines
448 B
Text

{
"compact": false,
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"targets": {
"browsers": ["ie >= 11", "safari > 10"]
}
}
],
["@babel/typescript", {"isTSX": true, "allExtensions": true}]
],
"plugins": [
"@babel/plugin-transform-runtime",
["babel-plugin-inferno", { "imports": true }],
["@babel/plugin-proposal-class-properties", { "loose": true }],
]
}