| { |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
| "version": 1, |
| "cli": { |
| "packageManager": "npm", |
| "schematicCollections": ["angular-eslint"] |
| }, |
| "newProjectRoot": "projects", |
| "projects": { |
| "fineract-backoffice-ui": { |
| "projectType": "application", |
| "schematics": { |
| "@schematics/angular:component": { |
| "style": "scss" |
| } |
| }, |
| "root": "", |
| "sourceRoot": "src", |
| "prefix": "app", |
| "architect": { |
| "build": { |
| "builder": "@angular/build:application", |
| "options": { |
| "browser": "src/main.ts", |
| "polyfills": ["zone.js"], |
| "tsConfig": "tsconfig.app.json", |
| "inlineStyleLanguage": "scss", |
| "assets": [ |
| "src/assets", |
| { |
| "glob": "**/*", |
| "input": "public" |
| } |
| ], |
| "styles": ["src/styles.scss"] |
| }, |
| "configurations": { |
| "production": { |
| "budgets": [ |
| { |
| "type": "initial", |
| "maximumWarning": "1mb", |
| "maximumError": "2mb" |
| }, |
| { |
| "type": "anyComponentStyle", |
| "maximumWarning": "4kB", |
| "maximumError": "8kB" |
| } |
| ], |
| "outputHashing": "all" |
| }, |
| "sandbox": { |
| "fileReplacements": [ |
| { |
| "replace": "src/environments/environment.ts", |
| "with": "src/environments/environment.sandbox.ts" |
| } |
| ], |
| "optimization": false, |
| "extractLicenses": false, |
| "sourceMap": true |
| }, |
| "development": { |
| "optimization": false, |
| "extractLicenses": false, |
| "sourceMap": true |
| } |
| }, |
| "defaultConfiguration": "production" |
| }, |
| "serve": { |
| "builder": "@angular/build:dev-server", |
| "options": { |
| "ssl": true, |
| "sslKey": "ssl/localhost.key", |
| "sslCert": "ssl/localhost.crt", |
| "proxyConfig": "proxy.conf.json" |
| }, |
| "configurations": { |
| "production": { |
| "buildTarget": "fineract-backoffice-ui:build:production" |
| }, |
| "sandbox": { |
| "buildTarget": "fineract-backoffice-ui:build:sandbox", |
| "proxyConfig": "proxy.conf.json" |
| }, |
| "development": { |
| "buildTarget": "fineract-backoffice-ui:build:development", |
| "proxyConfig": "proxy.conf.json" |
| } |
| }, |
| "defaultConfiguration": "development" |
| }, |
| "extract-i18n": { |
| "builder": "@angular/build:extract-i18n" |
| }, |
| "test": { |
| "builder": "@angular/build:karma", |
| "options": { |
| "codeCoverage": true, |
| "codeCoverageExclude": ["src/app/api/**/*"], |
| "polyfills": ["zone.js", "zone.js/testing"], |
| "tsConfig": "tsconfig.spec.json", |
| "inlineStyleLanguage": "scss", |
| "assets": [ |
| "src/assets", |
| { |
| "glob": "**/*", |
| "input": "public" |
| } |
| ], |
| "styles": ["src/styles.scss"] |
| } |
| }, |
| "lint": { |
| "builder": "@angular-eslint/builder:lint", |
| "options": { |
| "lintFilePatterns": ["src/**/*.ts", "src/**/*.html"] |
| } |
| } |
| } |
| } |
| } |
| } |