ADD: added react-router and updated structure of app

This commit is contained in:
Henry Winkel
2023-11-03 12:35:43 +01:00
parent f926604c7f
commit 3e95bc2633
29 changed files with 950 additions and 798 deletions

14
webapp/jsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}