{
  "version": 1,
  "cli": {
    "defaultCollection": "@nrwl/angular"
  },
  "defaultProject": "mt-client",
  "schematics": {
    "@nrwl/angular": {
      "application": {
        "linter": "eslint"
      },
      "library": {
        "linter": "eslint"
      },
      "storybook-configuration": {
        "linter": "eslint"
      }
    },
    "@nrwl/angular:application": {
      "style": "scss",
      "linter": "eslint",
      "unitTestRunner": "jest",
      "e2eTestRunner": "cypress"
    },
    "@nrwl/angular:library": {
      "style": "scss",
      "linter": "eslint",
      "unitTestRunner": "jest"
    },
    "@nrwl/angular:component": {
      "style": "scss"
    }
  },
  "projects": {
    "mt-client": {
      "projectType": "application",
      "root": "apps/mt-client",
      "sourceRoot": "apps/mt-client/src",
      "prefix": "dia-man-tools",
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "outputPath": "dist/apps/mt-client",
            "index": "apps/mt-client/src/index.html",
            "main": "apps/mt-client/src/main.ts",
            "polyfills": "apps/mt-client/src/polyfills.ts",
            "tsConfig": "apps/mt-client/tsconfig.app.json",
            "inlineStyleLanguage": "scss",
            "assets": [
              "apps/mt-client/src/favicon.ico",
              "apps/mt-client/src/assets"
            ],
            "styles": ["apps/mt-client/src/styles.scss"],
            "scripts": []
          },
          "configurations": {
            "production": {
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "500kb",
                  "maximumError": "1mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "2kb",
                  "maximumError": "4kb"
                }
              ],
              "fileReplacements": [
                {
                  "replace": "apps/mt-client/src/environments/environment.ts",
                  "with": "apps/mt-client/src/environments/environment.prod.ts"
                }
              ],
              "outputHashing": "all"
            },
            "integration": {
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "500kb",
                  "maximumError": "1mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "2kb",
                  "maximumError": "4kb"
                }
              ],
              "fileReplacements": [
                {
                  "replace": "apps/mt-client/src/environments/environment.ts",
                  "with": "apps/mt-client/src/environments/environment.int.ts"
                }
              ],
              "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": "mt-client:build:production"
            },
            "development": {
              "browserTarget": "mt-client:build:development"
            }
          },
          "defaultConfiguration": "development"
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "mt-client:build"
          }
        },
        "lint": {
          "builder": "@nrwl/linter:eslint",
          "options": {
            "lintFilePatterns": [
              "apps/mt-client/src/**/*.ts",
              "apps/mt-client/src/**/*.html"
            ]
          }
        },
        "test": {
          "builder": "@nrwl/jest:jest",
          "outputs": ["coverage/apps/mt-client"],
          "options": {
            "jestConfig": "apps/mt-client/jest.config.js",
            "passWithNoTests": true
          }
        }
      }
    },
    "mt-client-e2e": {
      "root": "apps/mt-client-e2e",
      "sourceRoot": "apps/mt-client-e2e/src",
      "projectType": "application",
      "architect": {
        "e2e": {
          "builder": "@nrwl/cypress:cypress",
          "options": {
            "cypressConfig": "apps/mt-client-e2e/cypress.json",
            "tsConfig": "apps/mt-client-e2e/tsconfig.e2e.json",
            "devServerTarget": "mt-client:serve:development"
          },
          "configurations": {
            "production": {
              "devServerTarget": "mt-client:serve:production"
            }
          }
        },
        "lint": {
          "builder": "@nrwl/linter:eslint",
          "options": {
            "lintFilePatterns": ["apps/mt-client-e2e/**/*.{js,ts}"]
          }
        }
      }
    },
    "mt-api": {
      "root": "apps/mt-api",
      "sourceRoot": "apps/mt-api/src",
      "projectType": "application",
      "architect": {
        "build": {
          "builder": "@nrwl/node:build",
          "outputs": ["{options.outputPath}"],
          "options": {
            "outputPath": "dist/apps/mt-api",
            "main": "apps/mt-api/src/main.ts",
            "tsConfig": "apps/mt-api/tsconfig.app.json",
            "assets": ["apps/mt-api/src/assets"]
          },
          "configurations": {
            "production": {
              "optimization": true,
              "extractLicenses": true,
              "inspect": false,
              "fileReplacements": [
                {
                  "replace": "apps/mt-api/src/environments/environment.ts",
                  "with": "apps/mt-api/src/environments/environment.prod.ts"
                }
              ]
            }
          }
        },
        "serve": {
          "builder": "@nrwl/node:execute",
          "options": {
            "buildTarget": "mt-api:build"
          }
        },
        "lint": {
          "builder": "@nrwl/linter:eslint",
          "options": {
            "lintFilePatterns": ["apps/mt-api/**/*.ts"]
          }
        },
        "test": {
          "builder": "@nrwl/jest:jest",
          "outputs": ["coverage/apps/mt-api"],
          "options": {
            "jestConfig": "apps/mt-api/jest.config.js",
            "passWithNoTests": true
          }
        }
      }
    }
  }
}
