mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
3b55cdc0be
* refactor(server): move constant into common package * refactor(server): re-arrange import statement in microservice module * refactor(server): move app.config into common package * fix(server): e2e testing
44 lines
886 B
JSON
44 lines
886 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2017",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@app/common": [
|
|
"libs/common/src"
|
|
],
|
|
"@app/common/*": [
|
|
"libs/common/src/*"
|
|
],
|
|
"@app/database": [
|
|
"libs/database/src"
|
|
],
|
|
"@app/database/*": [
|
|
"libs/database/src/*"
|
|
],
|
|
"@app/job": [
|
|
"libs/job/src"
|
|
],
|
|
"@app/job/*": [
|
|
"libs/job/src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"upload"
|
|
]
|
|
} |