changing repo structure

This commit is contained in:
2025-10-23 23:53:57 +02:00
parent 8d020a0dac
commit 809a838e27
12 changed files with 459 additions and 33 deletions

View File

@@ -1,19 +1,15 @@
// backend/tsconfig.json
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
"module": "ESNext",
"moduleResolution": "bundler"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
"include": [
"src/**/*"
],
"references": [
{ "path": "../premium" }
]
}