aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/angular.json
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/designer-client/angular.json')
-rw-r--r--cds-ui/designer-client/angular.json146
1 files changed, 146 insertions, 0 deletions
diff --git a/cds-ui/designer-client/angular.json b/cds-ui/designer-client/angular.json
new file mode 100644
index 000000000..954ad4ec9
--- /dev/null
+++ b/cds-ui/designer-client/angular.json
@@ -0,0 +1,146 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "newProjectRoot": "projects",
+ "projects": {
+ "designer-client": {
+ "projectType": "application",
+ "schematics": {},
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "architect": {
+ "build": {
+ "builder": "@angular-devkit/build-angular:browser",
+ "options": {
+ "outputPath": "dist/designer-client",
+ "index": "src/index.html",
+ "main": "src/main.ts",
+ "polyfills": "src/polyfills.ts",
+ "tsConfig": "tsconfig.app.json",
+ "aot": false,
+ "assets": [
+ "src/favicon.ico",
+ "src/assets"
+ ],
+ "styles": [
+ "src/styles.css",
+ "./node_modules/bootstrap/dist/css/bootstrap.min.css",
+ "./node_modules/@angular/material/prebuilt-themes/purple-green.css",
+ "./node_modules/font-awesome/css/font-awesome.css",
+ "./node_modules/jointjs/css/layout.css",
+ "./node_modules/jointjs/css/themes/material.css",
+ "./node_modules/jointjs/css/themes/default.css",
+ "src/assets/css/orangeHelvetica.css"
+
+ ],
+ "scripts": [
+ "./node_modules/jquery/dist/jquery.min.js",
+ "./node_modules/lodash/index.js",
+ "./node_modules/backbone/backbone.js",
+ "./node_modules/jointjs/dist/joint.js"
+ ]
+ },
+ "configurations": {
+ "production": {
+ "fileReplacements": [
+ {
+ "replace": "src/environments/environment.ts",
+ "with": "src/environments/environment.prod.ts"
+ }
+ ],
+ "optimization": true,
+ "outputHashing": "all",
+ "sourceMap": false,
+ "extractCss": true,
+ "namedChunks": false,
+ "aot": true,
+ "extractLicenses": true,
+ "vendorChunk": false,
+ "buildOptimizer": true,
+ "budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "2mb",
+ "maximumError": "5mb"
+ },
+ {
+ "type": "anyComponentStyle",
+ "maximumWarning": "6kb",
+ "maximumError": "10kb"
+ }
+ ]
+ }
+ }
+ },
+ "serve": {
+ "builder": "@angular-devkit/build-angular:dev-server",
+ "options": {
+ "browserTarget": "designer-client:build"
+ },
+ "configurations": {
+ "production": {
+ "browserTarget": "designer-client:build:production"
+ }
+ }
+ },
+ "extract-i18n": {
+ "builder": "@angular-devkit/build-angular:extract-i18n",
+ "options": {
+ "browserTarget": "designer-client: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/favicon.ico",
+ "src/assets"
+ ],
+ "styles": [
+ "src/styles.css",
+ "./node_modules/bootstrap/dist/css/bootstrap.min.css",
+ "./node_modules/@angular/material/prebuilt-themes/purple-green.css",
+ "./node_modules/font-awesome/css/font-awesome.css",
+ "src/assets/css/orangeHelvetica.css"
+ ],
+ "scripts": [
+
+
+ ]
+ }
+ },
+ "lint": {
+ "builder": "@angular-devkit/build-angular:tslint",
+ "options": {
+ "tsConfig": [
+ "tsconfig.app.json",
+ "tsconfig.spec.json",
+ "e2e/tsconfig.json"
+ ],
+ "exclude": [
+ "**/node_modules/**"
+ ]
+ }
+ },
+ "e2e": {
+ "builder": "@angular-devkit/build-angular:protractor",
+ "options": {
+ "protractorConfig": "e2e/protractor.conf.js",
+ "devServerTarget": "designer-client:serve"
+ },
+ "configurations": {
+ "production": {
+ "devServerTarget": "designer-client:serve:production"
+ }
+ }
+ }
+ }
+ }
+ },
+ "defaultProject": "designer-client"
+} \ No newline at end of file