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

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": [
"dom",
"es2015",
"es2016"
],
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
}
}