{
    "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
    "version": 1,
    "projects": {
        "block": {
            "projectType": "application",
            "schematics": {
                "@schematics/angular:component": {
                    "style": "scss"
                }
            },
            "root": "./",
            "sourceRoot": "src",
            "prefix": "block",
            "architect": {
                "build": {
                    "builder": "ngx-build-plus:browser",
                    "options": {
                        "outputPath": "../publish",
                        "index": "src/index.html",
                        "main": "src/main.ts",
                        "polyfills": "src/polyfills.ts",
                        "tsConfig": "tsconfig.json",
                        "stylePreprocessorOptions": {
                            "includePaths": [
                                "node_modules/@pepperi-addons",
                                "node_modules"
                            ]
                        },
                        "assets": [
                            "src/favicon.ico",
                            "src/assets",
                            {
                                "glob": "**/*",
                                "input": "node_modules/@pepperi-addons/ngx-lib/src/assets",
                                "output": "./assets/ngx-lib"
                            },
                            {
                                "glob": "**/*",
                                "input": "node_modules/@pepperi-addons/ngx-composite-lib/src/assets",
                                "output": "./assets/ngx-composite-lib"
                            }
                        ],
                        "commonChunk": true,
                        "extraWebpackConfig": "webpack.config.js"
                    },
                    "configurations": {
                        "development": {
                            "buildOptimizer": false,
                            "optimization": false,
                            "vendorChunk": true,
                            "extractLicenses": false,
                            "sourceMap": true,
                            "namedChunks": true
                        },
                        "production": {
                            "optimization": true,
                            "sourceMap": false,
                            "namedChunks": true,
                            "extractLicenses": true,
                            "vendorChunk": false,
                            "buildOptimizer": true,
                            "outputHashing": "none",
                            "fileReplacements": [{
                                "replace": "src/environments/environment.ts",
                                "with": "src/environments/environment.prod.ts"
                            }],
                            "extraWebpackConfig": "webpack.prod.config.js"
                        }
                    },
                    "defaultConfiguration": "production"
                },
                "serve": {
                    "builder": "ngx-build-plus:dev-server",
                    "options": {
						"port": 4400,
						"publicHost": "http://localhost:4400",
						"extraWebpackConfig": "webpack.config.js"
					},
                    "configurations": {
                        "production": {
                            "browserTarget": "block:build:production"
                        },
                        "development": {
                            "browserTarget": "block:build:development",
                            "extraWebpackConfig": "webpack.prod.config.js"
                        }
                    },
                    "defaultConfiguration": "development"
                }
            }
        }
    },
    "cli": {
        "cache": {
            "enabled": false
        },
        "analytics": false
    }
}