Spaces:
Sleeping
Sleeping
| { | |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
| "version": 1, | |
| "cli": { | |
| "packageManager": "npm", | |
| "analytics": false | |
| }, | |
| "newProjectRoot": "projects", | |
| "projects": { | |
| "mplus-studio": { | |
| "projectType": "application", | |
| "schematics": { | |
| "@schematics/angular:component": { | |
| "style": "scss", | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:class": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:directive": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:guard": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:interceptor": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:pipe": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:resolver": { | |
| "skipTests": true | |
| }, | |
| "@schematics/angular:service": { | |
| "skipTests": true | |
| } | |
| }, | |
| "root": "", | |
| "sourceRoot": "src", | |
| "prefix": "app", | |
| "architect": { | |
| "build": { | |
| "builder": "@angular/build:application", | |
| "options": { | |
| "browser": "src/main.ts", | |
| "tsConfig": "tsconfig.app.json", | |
| "inlineStyleLanguage": "scss", | |
| "assets": [ | |
| { | |
| "glob": "**/*", | |
| "input": "public" | |
| } | |
| ], | |
| "styles": ["src/styles.scss"] | |
| }, | |
| "configurations": { | |
| "production": { | |
| "budgets": [ | |
| { | |
| "type": "initial", | |
| "maximumWarning": "500kB", | |
| "maximumError": "1MB" | |
| }, | |
| { | |
| "type": "anyComponentStyle", | |
| "maximumWarning": "8kB", | |
| "maximumError": "12kB" | |
| } | |
| ], | |
| "outputHashing": "all" | |
| }, | |
| "development": { | |
| "optimization": false, | |
| "extractLicenses": false, | |
| "sourceMap": true | |
| } | |
| }, | |
| "defaultConfiguration": "production" | |
| }, | |
| "serve": { | |
| "builder": "@angular/build:dev-server", | |
| "configurations": { | |
| "production": { | |
| "buildTarget": "mplus-studio:build:production" | |
| }, | |
| "development": { | |
| "buildTarget": "mplus-studio:build:development" | |
| } | |
| }, | |
| "defaultConfiguration": "development" | |
| }, | |
| "test": { | |
| "builder": "@angular/build:unit-test", | |
| "options": { | |
| "buildTarget": "mplus-studio:build:development", | |
| "tsConfig": "tsconfig.spec.json", | |
| "runner": "vitest" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |