Spaces:
Runtime error
Runtime error
| { | |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
| "version": 1, | |
| "newProjectRoot": "projects", | |
| "projects": { | |
| "frontend": { | |
| "projectType": "application", | |
| "schematics": { | |
| "@schematics/angular:component": { | |
| "style": "scss" | |
| } | |
| }, | |
| "root": "", | |
| "sourceRoot": "src", | |
| "prefix": "app", | |
| "architect": { | |
| "build": { | |
| "builder": "@angular-devkit/build-angular:browser", | |
| "options": { | |
| "outputPath": "dist/frontend", | |
| "index": "src/index.html", | |
| "main": "src/main.ts", | |
| "polyfills": [ | |
| "zone.js" | |
| ], | |
| "tsConfig": "tsconfig.app.json", | |
| "inlineStyleLanguage": "scss", | |
| "assets": [ | |
| "src/favicon.ico", | |
| "src/assets" | |
| ], | |
| "styles": [ | |
| "src/styles.scss" | |
| ], | |
| "scripts": [] | |
| }, | |
| "configurations": { | |
| "production": { | |
| "budgets": [ | |
| { | |
| "type": "initial", | |
| "maximumWarning": "500kb", | |
| "maximumError": "1mb" | |
| }, | |
| { | |
| "type": "anyComponentStyle", | |
| "maximumWarning": "2kb", | |
| "maximumError": "4kb" | |
| } | |
| ], | |
| "outputHashing": "all" | |
| }, | |
| "development": { | |
| "buildOptimizer": false, | |
| "optimization": false, | |
| "vendorChunk": true, | |
| "extractLicenses": false, | |
| "sourceMap": true, | |
| "namedChunks": true | |
| } | |
| }, | |
| "defaultConfiguration": "production" | |
| }, | |
| "serve": { | |
| "builder": "@angular-devkit/build-angular:dev-server", | |
| "configurations": { | |
| "production": { | |
| "browserTarget": "frontend:build:production" | |
| }, | |
| "development": { | |
| "browserTarget": "frontend:build:development" | |
| } | |
| }, | |
| "defaultConfiguration": "development" | |
| }, | |
| "extract-i18n": { | |
| "builder": "@angular-devkit/build-angular:extract-i18n", | |
| "options": { | |
| "browserTarget": "frontend:build" | |
| } | |
| }, | |
| "test": { | |
| "builder": "@angular-devkit/build-angular:karma", | |
| "options": { | |
| "polyfills": [ | |
| "zone.js", | |
| "zone.js/testing" | |
| ], | |
| "tsConfig": "tsconfig.spec.json", | |
| "inlineStyleLanguage": "scss", | |
| "assets": [ | |
| "src/favicon.ico", | |
| "src/assets" | |
| ], | |
| "styles": [ | |
| "src/styles.scss" | |
| ], | |
| "scripts": [] | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |