frontend hello world

This commit is contained in:
Stepan Usatiuk
2023-12-15 19:41:01 +01:00
parent d18b7f2b3e
commit 1e2c667bf4
9 changed files with 3804 additions and 0 deletions

21
client/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"lib": [
"ES2023",
"dom"
],
"jsx": "react-jsx",
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"isolatedModules": true
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
]
}