|
@@ -0,0 +1,101 @@
|
|
|
+{
|
|
|
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
|
+ "version": 1,
|
|
|
+ "cli": {
|
|
|
+ "packageManager": "npm"
|
|
|
+ },
|
|
|
+ "newProjectRoot": "projects",
|
|
|
+ "projects": {
|
|
|
+ "vcat_angular": {
|
|
|
+ "projectType": "application",
|
|
|
+ "schematics": {},
|
|
|
+ "root": "",
|
|
|
+ "sourceRoot": "src",
|
|
|
+ "prefix": "app",
|
|
|
+ "architect": {
|
|
|
+ "build": {
|
|
|
+ "builder": "@angular-devkit/build-angular:browser",
|
|
|
+ "options": {
|
|
|
+ "outputPath": "dist/vcat_angular",
|
|
|
+ "index": "src/index.html",
|
|
|
+ "main": "src/main.ts",
|
|
|
+ "polyfills": [
|
|
|
+ "zone.js"
|
|
|
+ ],
|
|
|
+ "tsConfig": "tsconfig.app.json",
|
|
|
+ "assets": [
|
|
|
+ "src/favicon.ico",
|
|
|
+ "src/assets"
|
|
|
+ ],
|
|
|
+ "styles": [
|
|
|
+ "src/styles.css"
|
|
|
+ ],
|
|
|
+ "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": {
|
|
|
+ "builder": "@angular-devkit/build-angular:dev-server",
|
|
|
+ "configurations": {
|
|
|
+ "production": {
|
|
|
+ "browserTarget": "vcat_angular:build:production"
|
|
|
+ },
|
|
|
+ "development": {
|
|
|
+ "browserTarget": "vcat_angular:build:development"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "defaultConfiguration": "development"
|
|
|
+ },
|
|
|
+ "extract-i18n": {
|
|
|
+ "builder": "@angular-devkit/build-angular:extract-i18n",
|
|
|
+ "options": {
|
|
|
+ "browserTarget": "vcat_angular:build"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "test": {
|
|
|
+ "builder": "@angular-devkit/build-angular:karma",
|
|
|
+ "options": {
|
|
|
+ "polyfills": [
|
|
|
+ "zone.js",
|
|
|
+ "zone.js/testing"
|
|
|
+ ],
|
|
|
+ "tsConfig": "tsconfig.spec.json",
|
|
|
+ "assets": [
|
|
|
+ "src/favicon.ico",
|
|
|
+ "src/assets"
|
|
|
+ ],
|
|
|
+ "styles": [
|
|
|
+ "src/styles.css"
|
|
|
+ ],
|
|
|
+ "scripts": []
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|