immich/server/nest-cli.json
Thanh Pham 3b55cdc0be
refactor(server): move constant into common package (#522)
* 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
2022-08-23 07:34:21 -07:00

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"
}
}
}
}