| { |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
| "version": 1, |
| "newProjectRoot": "projects", |
| "projects": { |
| "app": { |
| "root": "", |
| "sourceRoot": "src", |
| "projectType": "application", |
| "architect": { |
| "build": { |
| "builder": "@angular-builders/custom-webpack:browser", |
| "options": { |
| "aot": true, |
| "outputPath": "dist/", |
| "index": "src/index.html", |
| "main": "src/main.ts", |
| "tsConfig": "src/tsconfig.app.json", |
| "polyfills": "src/polyfills.ts", |
| "allowedCommonJsDependencies": [ |
| "lodash", |
| "codemirror" |
| ], |
| "assets": [ |
| "src/assets", |
| { |
| "glob": "**/*", |
| "input": "node_modules/leaflet/dist/images", |
| "output": "assets/img" |
| } |
| ], |
| "styles": [ |
| "src/scss/main.scss" |
| ], |
| "scripts": [ |
| "node_modules/systemjs/dist/system.js", |
| "node_modules/plotly.js/dist/plotly.min.js", |
| "node_modules/jquery/dist/jquery.min.js", |
| "node_modules/datatables.net/js/jquery.dataTables.js", |
| "node_modules/jquery.panzoom/dist/jquery.panzoom.js", |
| "node_modules/jquery-ui-dist/jquery-ui.js", |
| "node_modules/jsplumb/dist/js/jsPlumb-2.1.3-min.js", |
| "node_modules/quill/dist/quill.js" |
| ] |
| }, |
| "configurations": { |
| "production": { |
| "fileReplacements": [ |
| { |
| "replace": "src/environments/environment.ts", |
| "with": "src/environments/environment.prod.ts" |
| } |
| ], |
| "budgets": [ |
| { |
| "type": "anyComponentStyle", |
| "maximumWarning": "6kb" |
| } |
| ], |
| "optimization": true, |
| "outputHashing": "all", |
| "sourceMap": false, |
| "extractCss": true, |
| "namedChunks": false, |
| "aot": true, |
| "extractLicenses": true, |
| "vendorChunk": false, |
| "buildOptimizer": true, |
| "customWebpackConfig": { |
| "path": "./webpack.partial.prod.js" |
| } |
| }, |
| "development": { |
| "customWebpackConfig": { |
| "path": "./webpack.partial.dev.js" |
| } |
| } |
| } |
| }, |
| "serve": { |
| "builder": "@angular-builders/custom-webpack:dev-server", |
| "options": { |
| "browserTarget": "app:build:development" |
| }, |
| "configurations": { |
| } |
| }, |
| "extract-i18n": { |
| "builder": "@angular-devkit/build-angular:extract-i18n", |
| "options": { |
| "browserTarget": "app:build" |
| } |
| }, |
| "test": { |
| "builder": "@angular-devkit/build-angular:karma", |
| "options": { |
| "main": "src/test.ts", |
| "polyfills": "src/polyfills.ts", |
| "tsConfig": "tsconfig.spec.json", |
| "karmaConfig": "karma.conf.js", |
| "assets": [ |
| "src/assets" |
| ], |
| "scripts": [ |
| ] |
| } |
| }, |
| "lint": { |
| "builder": "@angular-devkit/build-angular:tslint", |
| "options": { |
| "tsConfig": [], |
| "exclude": [] |
| } |
| } |
| } |
| }, |
| "app-e2e": { |
| "root": "e2e", |
| "sourceRoot": "e2e", |
| "projectType": "application" |
| } |
| }, |
| "defaultProject": "app" |
| } |