31 lines
706 B
JSON
31 lines
706 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"monorepo": true,
|
|
"root": "apps/api",
|
|
"sourceRoot": "apps/api/src",
|
|
"compilerOptions": {
|
|
"deleteOutDir": true
|
|
},
|
|
"projects": {
|
|
"api": {
|
|
"type": "application",
|
|
"root": "apps/api",
|
|
"entryFile": "main",
|
|
"sourceRoot": "apps/api/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "apps/api/tsconfig.app.json"
|
|
}
|
|
},
|
|
"worker": {
|
|
"type": "application",
|
|
"root": "apps/worker",
|
|
"entryFile": "main",
|
|
"sourceRoot": "apps/worker/src",
|
|
"compilerOptions": {
|
|
"tsConfigPath": "apps/worker/tsconfig.app.json"
|
|
}
|
|
}
|
|
}
|
|
}
|