airshipui/client/angular.json
Fuller, Matthew (mf4192) 8f6248f620 Refactor yaml explorer
Fixes #50

The yaml files exposed in the editor are now based on the phase
configuration specified in the metadataPath key of the airship
config file, and associated phase documents. Changes have been
made to the backend to allow for on-demand loading of phase
bundle documents, which will be necessary for an upcoming
change implementing the rendered document viewer.

Change-Id: I6d1a586e500fb9d82a65f5b73de6ca85bdff824c
2020-09-01 14:47:11 -07:00

102 lines
3.0 KiB
JSON

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"airshipui": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/airshipui",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/airship-icon.svg",
"src/assets",
{ "glob": "**/*", "input": "node_modules/ngx-monaco-editor/assets/monaco", "output": "./assets/monaco/" }
],
"styles": [
"src/styles.css",
"node_modules/ngx-toastr/toastr.css",
"node_modules/material-design-icons/iconfont/material-icons.css"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "airshipui:build"
},
"configurations": {
"production": {
"browserTarget": "airshipui:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "airshipui:build"
}
},
"test": {
"builder": "@angular-builders/jest:run",
"options": {}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}},
"defaultProject": "airshipui"
}