Files
angular-challenges/apps/ngfor-enhancement/project.json
thomas laforge 0e405206ca challenge 5: http
2022-11-12 14:56:26 +01:00

92 lines
2.6 KiB
JSON

{
"name": "ngfor-enhancement",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/ngfor-enhancement/src",
"prefix": "app",
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/apps/ngfor-enhancement",
"index": "apps/ngfor-enhancement/src/index.html",
"main": "apps/ngfor-enhancement/src/main.ts",
"polyfills": "apps/ngfor-enhancement/src/polyfills.ts",
"tsConfig": "apps/ngfor-enhancement/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"apps/ngfor-enhancement/src/favicon.ico",
"apps/ngfor-enhancement/src/assets"
],
"styles": [
"apps/ngfor-enhancement/src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "apps/ngfor-enhancement/src/environments/environment.ts",
"with": "apps/ngfor-enhancement/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "ngfor-enhancement:build:production"
},
"development": {
"browserTarget": "ngfor-enhancement:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngfor-enhancement:build"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"apps/ngfor-enhancement/**/*.ts",
"apps/ngfor-enhancement/**/*.html"
]
}
}
},
"tags": []
}