1234567891011121314151617181920212223242526272829303132 |
- {
- "$schema": "https://json.schemastore.org/nest-cli",
- "collection": "@nestjs/schematics",
- "sourceRoot": "apps/microservices/src",
- "compilerOptions": {
- "deleteOutDir": true,
- "webpack": true,
- "tsConfigPath": "apps/microservices/tsconfig.app.json"
- },
- "monorepo": true,
- "root": "apps/microservices",
- "projects": {
- "fis-fingerprint": {
- "type": "application",
- "root": "apps/fis-fingerprint",
- "entryFile": "main",
- "sourceRoot": "apps/fis-fingerprint",
- "compilerOptions": {
- "tsConfigPath": "apps/fis-fingerprint/tsconfig.app.json"
- }
- },
- "fis-verification": {
- "type": "application",
- "root": "apps/fis-verification",
- "entryFile": "main",
- "sourceRoot": "apps/fis-verification/src",
- "compilerOptions": {
- "tsConfigPath": "apps/fis-verification/tsconfig.app.json"
- }
- }
- }
- }
|