mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
d6d4d95b20
it was missing some plugins which firstly means we're using inconsistent js between projects, but also causes builds to fail due to our unique build system.
22 lines
437 B
Plaintext
22 lines
437 B
Plaintext
{
|
|
"presets": [
|
|
"react",
|
|
"es2015",
|
|
"es2016"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"transform-builtin-extend",
|
|
{
|
|
"globals": ["Error"]
|
|
}
|
|
],
|
|
"transform-class-properties",
|
|
"transform-object-rest-spread",
|
|
"transform-async-to-bluebird",
|
|
"transform-runtime",
|
|
"add-module-exports",
|
|
"syntax-dynamic-import"
|
|
]
|
|
}
|