mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-10 07:07:21 +00:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "apps/backend/src",
|
|
"compilerOptions": {
|
|
"deleteOutDir": true,
|
|
"webpack": true,
|
|
"tsConfigPath": "apps/backend/tsconfig.app.json"
|
|
},
|
|
"monorepo": true,
|
|
"root": "apps/backend",
|
|
"projects": {
|
|
"backend": {
|
|
"type": "application",
|
|
"root": "apps/backend",
|
|
"entryFile": "main",
|
|
"sourceRoot": "apps/backend/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "apps/backend/tsconfig.app.json"
|
|
}
|
|
},
|
|
"auth": {
|
|
"type": "application",
|
|
"root": "apps/auth",
|
|
"entryFile": "main",
|
|
"sourceRoot": "apps/auth/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "apps/auth/tsconfig.app.json"
|
|
}
|
|
},
|
|
"common": {
|
|
"type": "library",
|
|
"root": "libs/common",
|
|
"entryFile": "index",
|
|
"sourceRoot": "libs/common/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "libs/common/tsconfig.lib.json"
|
|
}
|
|
}
|
|
}
|
|
} |