added js package so that es7 syntax works, moved signaling-server from apps folder to pack folder, removed recurring js errors

This commit is contained in:
Beatrice Olivera
2018-08-31 20:47:33 +01:00
parent 62194ffea4
commit fbde469f45
8 changed files with 61 additions and 86 deletions

View File

@@ -1,18 +1,26 @@
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": "> 1%",
"uglify": true
},
"useBuiltIns": true
}]
[
"env",
{
"modules": false,
"targets": {
"browsers": "> 1%",
"uglify": true
},
"useBuiltIns": true
}
]
],
"plugins": [
"syntax-dynamic-import",
"transform-object-rest-spread",
["transform-class-properties", { "spec": true }]
"transform-runtime",
[
"transform-class-properties",
{
"spec": true
}
]
]
}