split delivery into standalone dockerized service

This commit is contained in:
Ruslan Bakiev
2026-02-20 12:25:10 +07:00
parent 46cca064df
commit cb7d81e801
15 changed files with 2090 additions and 49 deletions

14
delivery/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"types": ["node"],
"resolveJsonModule": true,
"verbatimModuleSyntax": true
},
"include": ["src/**/*.ts"]
}