Initial commit

This commit is contained in:
2020-08-23 00:33:34 +02:00
commit 5776a66fb1
15 changed files with 8176 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"baseUrl": "./src/",
"paths": {
"@app/*": ["../src/*"]
}
}
}