2022-02-03 09:06:44 -07:00
|
|
|
{
|
|
|
|
"collection": "@nestjs/schematics",
|
2022-06-11 14:12:06 -07:00
|
|
|
"sourceRoot": "apps/immich/src",
|
|
|
|
"monorepo": true,
|
|
|
|
"root": "apps/immich",
|
|
|
|
"compilerOptions": {
|
|
|
|
"webpack": false,
|
2022-07-08 19:26:50 -07:00
|
|
|
"tsConfigPath": "apps/immich/tsconfig.app.json",
|
2022-11-05 09:28:40 -07:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "@nestjs/swagger",
|
|
|
|
"options": {
|
|
|
|
"classValidatorShim": false,
|
|
|
|
"introspectComments": true
|
|
|
|
}
|
2022-07-08 19:26:50 -07:00
|
|
|
}
|
2022-11-05 09:28:40 -07:00
|
|
|
]
|
2022-06-11 14:12:06 -07:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
},
|
2022-11-05 09:28:40 -07:00
|
|
|
"cli": {
|
|
|
|
"type": "application",
|
|
|
|
"root": "apps/cli",
|
|
|
|
"entryFile": "immich",
|
|
|
|
"sourceRoot": "apps/cli/src",
|
|
|
|
"compilerOptions": {
|
|
|
|
"tsConfigPath": "apps/cli/tsconfig.app.json"
|
|
|
|
}
|
|
|
|
},
|
2023-01-11 19:34:36 -07:00
|
|
|
"infra": {
|
|
|
|
"type": "library",
|
|
|
|
"root": "libs/infra",
|
|
|
|
"entryFile": "index",
|
|
|
|
"sourceRoot": "libs/infra/src",
|
|
|
|
"compilerOptions": {
|
|
|
|
"tsConfigPath": "libs/infra/tsconfig.lib.json"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"domain": {
|
|
|
|
"type": "library",
|
|
|
|
"root": "libs/domain",
|
|
|
|
"entryFile": "index",
|
|
|
|
"sourceRoot": "libs/domain/src",
|
|
|
|
"compilerOptions": {
|
|
|
|
"tsConfigPath": "libs/domain/tsconfig.lib.json"
|
|
|
|
}
|
2022-06-11 14:12:06 -07:00
|
|
|
}
|
|
|
|
}
|
2023-03-30 10:22:25 -07:00
|
|
|
}
|