mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -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
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "apps/immich/src",
|
|
"monorepo": true,
|
|
"root": "apps/immich",
|
|
"compilerOptions": {
|
|
"webpack": false,
|
|
"tsConfigPath": "apps/immich/tsconfig.app.json",
|
|
"plugins": [ {
|
|
"name": "@nestjs/swagger",
|
|
"options": {
|
|
"classValidatorShim": false,
|
|
"introspectComments": true
|
|
}
|
|
}]
|
|
},
|
|
"projects": {
|
|
"immich": {
|
|
"type": "application",
|
|
"root": "apps/immich",
|
|
"entryFile": "main",
|
|
"sourceRoot": "apps/immich/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "apps/immich/tsconfig.app.json"
|
|
}
|
|
},
|
|
"microservices": {
|
|
"type": "application",
|
|
"root": "apps/microservices",
|
|
"entryFile": "main",
|
|
"sourceRoot": "apps/microservices/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "apps/microservices/tsconfig.app.json"
|
|
}
|
|
},
|
|
"common": {
|
|
"type": "library",
|
|
"root": "libs/common",
|
|
"entryFile": "index",
|
|
"sourceRoot": "libs/common/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "libs/common/tsconfig.lib.json"
|
|
}
|
|
},
|
|
"database": {
|
|
"type": "library",
|
|
"root": "libs/database",
|
|
"entryFile": "index",
|
|
"sourceRoot": "libs/database/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "libs/database/tsconfig.lib.json"
|
|
}
|
|
},
|
|
"job": {
|
|
"type": "library",
|
|
"root": "libs/job",
|
|
"entryFile": "index",
|
|
"sourceRoot": "libs/job/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "libs/job/tsconfig.lib.json"
|
|
}
|
|
}
|
|
}
|
|
}
|