chore(server): bump server dependencies (#3899)

* chore(server): bump server dependencies

* fix: test
This commit is contained in:
Alex
2023-08-28 14:41:57 -05:00
committed by GitHub
parent 26c43617d1
commit d0a06739d8
15 changed files with 6769 additions and 5037 deletions

View File

@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "Node16",
"strict": true,
"declaration": true,
"removeComments": true,
@@ -17,15 +17,35 @@
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"@test": ["test"],
"@test/*": ["test/*"],
"@app/immich": ["src/immich"],
"@app/immich/*": ["src/immich/*"],
"@app/infra": ["src/infra"],
"@app/infra/*": ["src/infra/*"],
"@app/domain": ["src/domain"],
"@app/domain/*": ["src/domain/*"]
"@test": [
"test"
],
"@test/*": [
"test/*"
],
"@app/immich": [
"src/immich"
],
"@app/immich/*": [
"src/immich/*"
],
"@app/infra": [
"src/infra"
],
"@app/infra/*": [
"src/infra/*"
],
"@app/domain": [
"src/domain"
],
"@app/domain/*": [
"src/domain/*"
]
}
},
"exclude": ["dist", "node_modules", "upload"]
}
"exclude": [
"dist",
"node_modules",
"upload"
]
}