immich/server/tsconfig.json
Jonathan Jogenfors 3edade6761
feat(server): tsconfig: don't clear console on nest startup (#4032)
* feat: don't clear nest output

* feat: moved config to tsconfig

* fix: cleanup package json
2023-09-08 11:17:45 -04:00

33 lines
864 B
JSON

{
"compilerOptions": {
"module": "Node16",
"strict": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"target": "es2017",
"moduleResolution": "node16",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
"preserveWatchOutput": 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/*"]
}
},
"exclude": ["dist", "node_modules", "upload"]
}