[6a3a178] | 1 | {
|
---|
| 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
---|
| 3 | "version": 1,
|
---|
| 4 | "newProjectRoot": "projects",
|
---|
| 5 | "projects": {
|
---|
| 6 | "trip-planner-front": {
|
---|
| 7 | "projectType": "application",
|
---|
| 8 | "schematics": {
|
---|
| 9 | "@schematics/angular:application": {
|
---|
| 10 | "strict": true
|
---|
| 11 | }
|
---|
| 12 | },
|
---|
| 13 | "root": "",
|
---|
| 14 | "sourceRoot": "src",
|
---|
| 15 | "prefix": "app",
|
---|
| 16 | "architect": {
|
---|
| 17 | "build": {
|
---|
| 18 | "builder": "@angular-devkit/build-angular:browser",
|
---|
| 19 | "options": {
|
---|
| 20 | "outputPath": "dist/trip-planner-front",
|
---|
| 21 | "index": "src/index.html",
|
---|
| 22 | "main": "src/main.ts",
|
---|
| 23 | "polyfills": "src/polyfills.ts",
|
---|
| 24 | "tsConfig": "tsconfig.app.json",
|
---|
| 25 | "assets": [
|
---|
| 26 | "src/favicon.ico",
|
---|
| 27 | "src/assets"
|
---|
| 28 | ],
|
---|
| 29 | "styles": [
|
---|
| 30 | "src/styles.css"
|
---|
| 31 | ],
|
---|
| 32 | "scripts": []
|
---|
| 33 | },
|
---|
| 34 | "configurations": {
|
---|
| 35 | "production": {
|
---|
| 36 | "budgets": [
|
---|
| 37 | {
|
---|
| 38 | "type": "initial",
|
---|
| 39 | "maximumWarning": "500kb",
|
---|
| 40 | "maximumError": "1mb"
|
---|
| 41 | },
|
---|
| 42 | {
|
---|
| 43 | "type": "anyComponentStyle",
|
---|
| 44 | "maximumWarning": "2kb",
|
---|
| 45 | "maximumError": "4kb"
|
---|
| 46 | }
|
---|
| 47 | ],
|
---|
| 48 | "fileReplacements": [
|
---|
| 49 | {
|
---|
| 50 | "replace": "src/environments/environment.ts",
|
---|
| 51 | "with": "src/environments/environment.prod.ts"
|
---|
| 52 | }
|
---|
| 53 | ],
|
---|
| 54 | "outputHashing": "all"
|
---|
| 55 | },
|
---|
| 56 | "development": {
|
---|
| 57 | "buildOptimizer": false,
|
---|
| 58 | "optimization": false,
|
---|
| 59 | "vendorChunk": true,
|
---|
| 60 | "extractLicenses": false,
|
---|
| 61 | "sourceMap": true,
|
---|
| 62 | "namedChunks": true
|
---|
| 63 | }
|
---|
| 64 | },
|
---|
| 65 | "defaultConfiguration": "production"
|
---|
| 66 | },
|
---|
| 67 | "serve": {
|
---|
| 68 | "builder": "@angular-devkit/build-angular:dev-server",
|
---|
| 69 | "configurations": {
|
---|
| 70 | "production": {
|
---|
| 71 | "browserTarget": "trip-planner-front:build:production"
|
---|
| 72 | },
|
---|
| 73 | "development": {
|
---|
| 74 | "browserTarget": "trip-planner-front:build:development"
|
---|
| 75 | }
|
---|
| 76 | },
|
---|
| 77 | "defaultConfiguration": "development"
|
---|
| 78 | },
|
---|
| 79 | "extract-i18n": {
|
---|
| 80 | "builder": "@angular-devkit/build-angular:extract-i18n",
|
---|
| 81 | "options": {
|
---|
| 82 | "browserTarget": "trip-planner-front:build"
|
---|
| 83 | }
|
---|
| 84 | },
|
---|
| 85 | "test": {
|
---|
| 86 | "builder": "@angular-devkit/build-angular:karma",
|
---|
| 87 | "options": {
|
---|
| 88 | "main": "src/test.ts",
|
---|
| 89 | "polyfills": "src/polyfills.ts",
|
---|
| 90 | "tsConfig": "tsconfig.spec.json",
|
---|
| 91 | "karmaConfig": "karma.conf.js",
|
---|
| 92 | "assets": [
|
---|
| 93 | "src/favicon.ico",
|
---|
| 94 | "src/assets"
|
---|
| 95 | ],
|
---|
| 96 | "styles": [
|
---|
| 97 | "src/styles.css"
|
---|
| 98 | ],
|
---|
| 99 | "scripts": []
|
---|
| 100 | }
|
---|
| 101 | }
|
---|
| 102 | }
|
---|
| 103 | }
|
---|
| 104 | },
|
---|
| 105 | "defaultProject": "trip-planner-front"
|
---|
[59329aa] | 106 | } |
---|