added community version

This commit is contained in:
2025-10-24 23:52:57 +02:00
parent 05fa87c638
commit 5e7c5aabfb
12 changed files with 17913 additions and 2328 deletions

View File

@@ -1,7 +1,5 @@
{
"name": "schichtplan-backend",
"license": "SEE LICENSE IN LICENSE.md",
"author": "Patrick <dev.patrick@inca-vikingo.de>",
"version": "1.0.0",
"type": "module",
"scripts": {
@@ -35,4 +33,4 @@
"typescript": "^5.0.0",
"tsx": "^4.0.0"
}
}
}

View File

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