|
| 1 | +{ |
| 2 | + "name": "example", |
| 3 | + "$schema": "../../node_modules/nx/schemas/project-schema.json", |
| 4 | + "projectType": "application", |
| 5 | + "prefix": "postprocessing", |
| 6 | + "sourceRoot": "apps/example/src", |
| 7 | + "tags": [], |
| 8 | + "targets": { |
| 9 | + "build": { |
| 10 | + "executor": "@angular-devkit/build-angular:browser", |
| 11 | + "outputs": ["{options.outputPath}"], |
| 12 | + "options": { |
| 13 | + "outputPath": "dist/apps/example", |
| 14 | + "index": "apps/example/src/index.html", |
| 15 | + "main": "apps/example/src/main.ts", |
| 16 | + "polyfills": ["zone.js"], |
| 17 | + "tsConfig": "apps/example/tsconfig.app.json", |
| 18 | + "assets": ["apps/example/src/favicon.ico", "apps/example/src/assets"], |
| 19 | + "styles": ["apps/example/src/styles.css"], |
| 20 | + "scripts": [] |
| 21 | + }, |
| 22 | + "configurations": { |
| 23 | + "production": { |
| 24 | + "budgets": [ |
| 25 | + { |
| 26 | + "type": "initial", |
| 27 | + "maximumWarning": "500kb", |
| 28 | + "maximumError": "1mb" |
| 29 | + }, |
| 30 | + { |
| 31 | + "type": "anyComponentStyle", |
| 32 | + "maximumWarning": "2kb", |
| 33 | + "maximumError": "4kb" |
| 34 | + } |
| 35 | + ], |
| 36 | + "outputHashing": "all" |
| 37 | + }, |
| 38 | + "development": { |
| 39 | + "buildOptimizer": false, |
| 40 | + "optimization": false, |
| 41 | + "vendorChunk": true, |
| 42 | + "extractLicenses": false, |
| 43 | + "sourceMap": true, |
| 44 | + "namedChunks": true |
| 45 | + } |
| 46 | + }, |
| 47 | + "defaultConfiguration": "production" |
| 48 | + }, |
| 49 | + "serve": { |
| 50 | + "executor": "@angular-devkit/build-angular:dev-server", |
| 51 | + "configurations": { |
| 52 | + "production": { |
| 53 | + "browserTarget": "example:build:production" |
| 54 | + }, |
| 55 | + "development": { |
| 56 | + "browserTarget": "example:build:development" |
| 57 | + } |
| 58 | + }, |
| 59 | + "defaultConfiguration": "development" |
| 60 | + }, |
| 61 | + "extract-i18n": { |
| 62 | + "executor": "@angular-devkit/build-angular:extract-i18n", |
| 63 | + "options": { |
| 64 | + "browserTarget": "example:build" |
| 65 | + } |
| 66 | + } |
| 67 | + } |
| 68 | +} |
0 commit comments