Add dockerfile

This commit is contained in:
Owen Schwartz
2024-09-28 18:17:37 -04:00
parent a67463a518
commit 13ddcafda4
9 changed files with 158 additions and 13 deletions

14
tsconfig.server.json Normal file
View File

@@ -0,0 +1,14 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./dist",
"noEmit": false,
"baseUrl": ".",
"paths": {
"@server/*": ["./server/*"]
}
},
"include": ["**/*.ts"]
}