Files
angular-challenges/apps/angular/57-content-projection-default/project.json
2025-02-28 11:51:26 +01:00

82 lines
2.5 KiB
JSON

{
"name": "angular-content-projection-default",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"prefix": "app",
"sourceRoot": "apps/angular/57-content-projection-default/src",
"tags": [],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:application",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/angular/57-content-projection-default",
"index": "apps/angular/57-content-projection-default/src/index.html",
"browser": "apps/angular/57-content-projection-default/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/angular/57-content-projection-default/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
{
"glob": "**/*",
"input": "apps/angular/57-content-projection-default/public"
}
],
"styles": [
"apps/angular/57-content-projection-default/src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "4kb",
"maximumError": "8kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "angular-content-projection-default:build:production"
},
"development": {
"buildTarget": "angular-content-projection-default:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "angular-content-projection-default:build"
}
},
"serve-static": {
"executor": "@nx/web:file-server",
"options": {
"buildTarget": "angular-content-projection-default:build",
"staticFilePath": "dist/apps/angular/57-content-projection-default/browser",
"spa": true
}
}
}
}