https://github.com/angular/angular
Raw File
Tip revision: c92220a5f94043782d6b0eb7e86866192aaab7e3 authored by Andrew Kushnir on 17 May 2023, 18:27:43 UTC
release: cut the v16.0.2 release
Tip revision: c92220a
angular.json
{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "cli-hello-world-ivy-i18n": {
      "projectType": "application",
      "schematics": {},
      "root": "",
      "sourceRoot": "src",
      "prefix": "app",
      "i18n": {
        "sourceLocale": "en-US",
        "locales": {
          "fr": "src/locale/messages.fr.xlf",
          "de": "src/locale/messages.de.xlf"
        }
      },
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "outputPath": "dist",
            "index": "src/index.html",
            "main": "src/main.ts",
            "polyfills": [
              "zone.js",
              "@angular/localize/init"
            ],
            "tsConfig": "tsconfig.app.json",
            "assets": ["src/favicon.ico", "src/assets"],
            "styles": ["src/styles.css"],
            "scripts": [],
            "progress": false,
            "optimization": false,
            "buildOptimizer": false,
            "i18nMissingTranslation": "error"
          },
          "configurations": {
            "production": {
              "optimization": true,
              "outputHashing": "all",
              "sourceMap": false,
              "namedChunks": false,
              "aot": true,
              "extractLicenses": true,
              "vendorChunk": false,
              "buildOptimizer": true,
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "2mb",
                  "maximumError": "5mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "6kb",
                  "maximumError": "10kb"
                }
              ]
            },
            "fr": {
              "localize": ["fr"],
              "deleteOutputPath": false
            },
            "de": {
              "localize": ["de"],
              "deleteOutputPath": false
            }
          }
        },
        "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "browserTarget": "cli-hello-world-ivy-i18n:build"
          },
          "configurations": {
            "production": {
              "browserTarget": "cli-hello-world-ivy-i18n:build:production"
            },
            "fr": {
              "browserTarget": "cli-hello-world-ivy-i18n:build:production,fr"
            },
            "de": {
              "browserTarget": "cli-hello-world-ivy-i18n:build:production,de"
            }
          }
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "cli-hello-world-ivy-i18n:build",
            "outputPath": "src/locale"
          }
        },
        "test": {
          "builder": "@angular-devkit/build-angular:karma",
          "options": {
            "main": "src/test.ts",
            "polyfills": [
              "zone.js",
              "zone.js/testing",
              "@angular/localize/init"
            ],
            "tsConfig": "tsconfig.spec.json",
            "karmaConfig": "karma.conf.js",
            "assets": ["src/favicon.ico", "src/assets"],
            "styles": ["src/styles.css"],
            "scripts": [],
            "progress": false,
            "watch": false
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": ["tsconfig.app.json", "tsconfig.spec.json", "e2e/tsconfig.json"],
            "exclude": ["**/node_modules/**"]
          }
        },
        "e2e": {
          "builder": "@angular-devkit/build-angular:protractor",
          "options": {
            "protractorConfig": "e2e/protractor.conf.js",
            "devServerTarget": "cli-hello-world-ivy-i18n:serve",
            "webdriverUpdate": false,
            "specs": ["./en/app.e2e-spec.ts"]
          },
          "configurations": {
            "production": {
              "devServerTarget": "cli-hello-world-ivy-i18n:serve:production",
              "protractorConfig": "e2e/protractor.conf.js"
            },
            "fr": {
              "devServerTarget": "cli-hello-world-ivy-i18n:serve:fr",
              "specs": ["./fr/app.e2e-spec.ts"]
            },
            "de": {
              "devServerTarget": "cli-hello-world-ivy-i18n:serve:de",
              "specs": ["./de/app.e2e-spec.ts"]
            }
          }
        }
      }
    }
  }
}
back to top