mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
ac2a83a7a6
* User HTTP instead of HTTPS when fetching icon in docker internal network * Add debug statement. * Revert "Add debug statement." This reverts commit7fbb12a4bd
. * Revert "User HTTP instead of HTTPS when fetching icon in docker internal network" This reverts commit498de660ba
. * Always replace host with internal host * Fix lint script * Remove prettier from pre-commit --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
20 lines
448 B
Text
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 }]
|
|
]
|
|
}
|