Files
angular-challenges/apps/testing/28-checkbox/project.json
2024-09-23 21:47:33 +02:00

83 lines
2.2 KiB
JSON

{
"name": "testing-checkbox",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"prefix": "app",
"sourceRoot": "apps/testing/28-checkbox/src",
"tags": [],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/testing/28-checkbox",
"index": "apps/testing/28-checkbox/src/index.html",
"main": "apps/testing/28-checkbox/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/testing/28-checkbox/tsconfig.app.json",
"assets": [
"apps/testing/28-checkbox/src/favicon.ico",
"apps/testing/28-checkbox/src/assets"
],
"styles": ["apps/testing/28-checkbox/src/styles.scss"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"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": {
"buildTarget": "testing-checkbox:build:production"
},
"development": {
"buildTarget": "testing-checkbox:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "testing-checkbox:build"
}
},
"test": {
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"coverage": true
}
}
}
}
}