homefront/website/angular.json

119 lines
3.4 KiB
JSON
Raw Normal View History

2018-11-13 17:03:35 -05:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
2021-06-19 19:52:10 -04:00
"Homefront": {
2018-11-13 17:03:35 -05:00
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
2021-06-19 19:52:10 -04:00
"inlineTemplate": true,
"inlineStyle": true,
"style": "scss",
"skipTests": true
},
"@schematics/angular:class": {
"skipTests": true
},
"@schematics/angular:directive": {
"skipTests": true
},
"@schematics/angular:guard": {
"skipTests": true
},
"@schematics/angular:interceptor": {
"skipTests": true
},
"@schematics/angular:pipe": {
"skipTests": true
},
"@schematics/angular:service": {
"skipTests": true
},
"@schematics/angular:application": {
"strict": true
2018-11-13 17:03:35 -05:00
}
},
2021-06-19 19:52:10 -04:00
"root": "",
"sourceRoot": "src",
"prefix": "app",
2018-11-13 17:03:35 -05:00
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
2021-06-19 20:21:09 -04:00
"outputPath": "dist/HomeFront",
2018-11-13 17:03:35 -05:00
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
2021-06-19 19:52:10 -04:00
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
2018-11-13 17:03:35 -05:00
"assets": [
2021-06-19 19:52:10 -04:00
"src/favicon.ico",
2018-11-14 14:19:11 -05:00
"src/assets",
2021-06-19 19:52:10 -04:00
"src/manifest.webmanifest"
2018-11-13 17:03:35 -05:00
],
"styles": [
2021-06-19 19:52:10 -04:00
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
2018-11-13 17:03:35 -05:00
"src/styles.scss"
],
2021-06-19 19:52:10 -04:00
"scripts": [],
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
2018-11-13 17:03:35 -05:00
},
"configurations": {
"production": {
2021-06-19 19:52:10 -04:00
"budgets": [
2018-11-13 17:03:35 -05:00
{
2021-06-19 19:52:10 -04:00
"type": "initial",
2021-06-19 20:03:29 -04:00
"maximumWarning": "2mb",
"maximumError": "4mb"
2021-06-19 19:52:10 -04:00
},
{
"type": "anyComponentStyle",
2021-06-19 20:03:29 -04:00
"maximumWarning": "2mb",
"maximumError": "4mb"
2018-11-13 17:03:35 -05:00
}
],
2021-06-19 19:52:10 -04:00
"fileReplacements": [
2018-11-13 17:03:35 -05:00
{
2021-06-19 19:52:10 -04:00
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
2018-11-13 17:03:35 -05:00
}
2018-11-14 14:19:11 -05:00
],
2021-06-19 19:52:10 -04:00
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
2018-11-13 17:03:35 -05:00
}
2021-06-19 19:52:10 -04:00
},
"defaultConfiguration": "production"
2018-11-13 17:03:35 -05:00
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
2021-06-19 19:52:10 -04:00
"browserTarget": "Homefront:build:production"
},
"development": {
"browserTarget": "Homefront:build:development"
2018-11-13 17:03:35 -05:00
}
2021-06-19 19:52:10 -04:00
},
"defaultConfiguration": "development"
2018-11-13 17:03:35 -05:00
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2021-06-19 19:52:10 -04:00
"browserTarget": "Homefront:build"
2018-11-13 17:03:35 -05:00
}
}
}
}
},
2021-06-19 19:52:10 -04:00
"defaultProject": "Homefront"
}