feat: add frontend

This commit is contained in:
Maël Gangloff
2024-07-22 14:45:21 +02:00
parent 1642767993
commit 3d7a6fbcfd
21 changed files with 5818 additions and 44 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": true,
"module": "CommonJS",
"target": "ES6",
"jsx": "react",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true
},
"exclude": [
"node_modules"
]
}