joinlemmy-site/.babelrc
Dessalines 929103ad12
Add prettier ci (#163)
* Adding prettier to CI.

* Running prettier.
2023-06-08 22:09:25 +02: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 }]
]
}