initialized webpack and babel

This commit is contained in:
Fran Jurmanović
2021-05-28 18:37:31 +02:00
commit 888c76829c
8 changed files with 4677 additions and 0 deletions

21
.babelrc Normal file
View File

@@ -0,0 +1,21 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/proposal-object-rest-spread",
[
"@babel/proposal-class-properties",
{
"loose": true
}
]
]
}