Init backend, frontend and DB schema

This commit is contained in:
2024-08-03 10:44:42 +02:00
parent ddd7f7221b
commit 777038e0b4
23 changed files with 1917 additions and 0 deletions

34
tsconfig.base.json Normal file
View File

@@ -0,0 +1,34 @@
{
"compilerOptions": {
"composite": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"rootDir": "${configDir}/src",
"outDir": "${configDir}/dist",
"module": "ES2020",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"types": [],
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"jsxImportSource": "preact",
"strict": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"paths": {
"common": ["./packages/common/src/index.ts"],
},
},
"include": ["${configDir}/src"],
}