|
|
|
@ -15,20 +15,15 @@
|
|
|
|
"prefix": "app",
|
|
|
|
"prefix": "app",
|
|
|
|
"architect": {
|
|
|
|
"architect": {
|
|
|
|
"build": {
|
|
|
|
"build": {
|
|
|
|
"builder": "@angular-devkit/build-angular:application",
|
|
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
|
|
"options": {
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/aconnect-ux",
|
|
|
|
"outputPath": "dist/aconnect-ux/browser",
|
|
|
|
"index": "src/index.html",
|
|
|
|
"index": "src/index.html",
|
|
|
|
"browser": "src/main.ts",
|
|
|
|
"main": "src/main.ts",
|
|
|
|
"polyfills": [
|
|
|
|
"polyfills": ["zone.js"],
|
|
|
|
"zone.js"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"tsConfig": "tsconfig.app.json",
|
|
|
|
"tsConfig": "tsconfig.app.json",
|
|
|
|
"inlineStyleLanguage": "scss",
|
|
|
|
"inlineStyleLanguage": "scss",
|
|
|
|
"assets": [
|
|
|
|
"assets": ["src/favicon.ico", "src/assets"],
|
|
|
|
"src/favicon.ico",
|
|
|
|
|
|
|
|
"src/assets"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"styles": [
|
|
|
|
"styles": [
|
|
|
|
"src/styles.scss",
|
|
|
|
"src/styles.scss",
|
|
|
|
"node_modules/@ng-select/ng-select/themes/default.theme.css",
|
|
|
|
"node_modules/@ng-select/ng-select/themes/default.theme.css",
|
|
|
|
@ -38,26 +33,13 @@
|
|
|
|
"src/assets/css/icons.min.css",
|
|
|
|
"src/assets/css/icons.min.css",
|
|
|
|
"src/assets/css/app.min.css"
|
|
|
|
"src/assets/css/app.min.css"
|
|
|
|
],
|
|
|
|
],
|
|
|
|
"scripts": [],
|
|
|
|
"scripts": []
|
|
|
|
"server": "src/main.server.ts",
|
|
|
|
|
|
|
|
"outputMode": "server",
|
|
|
|
|
|
|
|
"ssr": {
|
|
|
|
|
|
|
|
"entry": "src/server.ts"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"production": {
|
|
|
|
"budgets": [
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
{ "type": "initial", "maximumWarning": "500kB", "maximumError": "1MB" },
|
|
|
|
"type": "initial",
|
|
|
|
{ "type": "anyComponentStyle", "maximumWarning": "4kB", "maximumError": "8kB" }
|
|
|
|
"maximumWarning": "500kB",
|
|
|
|
|
|
|
|
"maximumError": "1MB"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
|
|
|
|
"maximumWarning": "4kB",
|
|
|
|
|
|
|
|
"maximumError": "8kB"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
],
|
|
|
|
"outputHashing": "all",
|
|
|
|
"outputHashing": "all",
|
|
|
|
"fileReplacements": [
|
|
|
|
"fileReplacements": [
|
|
|
|
@ -70,44 +52,86 @@
|
|
|
|
"development": {
|
|
|
|
"development": {
|
|
|
|
"optimization": false,
|
|
|
|
"optimization": false,
|
|
|
|
"extractLicenses": false,
|
|
|
|
"extractLicenses": false,
|
|
|
|
"sourceMap": true
|
|
|
|
"sourceMap": true,
|
|
|
|
|
|
|
|
"fileReplacements": [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
|
|
|
|
"with": "src/environments/environment.dev.ts"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
"test": {
|
|
|
|
|
|
|
|
"optimization": false,
|
|
|
|
|
|
|
|
"extractLicenses": false,
|
|
|
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
|
|
|
"fileReplacements": [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
|
|
|
|
"with": "src/environments/environment.test.ts"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"defaultConfiguration": "production"
|
|
|
|
"defaultConfiguration": "production"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
"serve": {
|
|
|
|
"serve": {
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
|
|
|
|
"configurations": {
|
|
|
|
|
|
|
|
"production": { "buildTarget": "ACONNECT-UX:build:production" },
|
|
|
|
|
|
|
|
"development": { "buildTarget": "ACONNECT-UX:build:development" },
|
|
|
|
|
|
|
|
"test": { "buildTarget": "ACONNECT-UX:build:test" }
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
"defaultConfiguration": "development"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"server": {
|
|
|
|
|
|
|
|
"builder": "@angular-devkit/build-angular:server",
|
|
|
|
|
|
|
|
"options": {
|
|
|
|
|
|
|
|
"outputPath": "dist/aconnect-ux/server",
|
|
|
|
|
|
|
|
"main": "src/main.server.ts",
|
|
|
|
|
|
|
|
"tsConfig": "tsconfig.server.json"
|
|
|
|
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"production": {
|
|
|
|
"buildTarget": "ACONNECT-UX:build:production"
|
|
|
|
"fileReplacements": [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
|
|
|
|
"with": "src/environments/environment.prod.ts"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"development": {
|
|
|
|
"development": {
|
|
|
|
"buildTarget": "ACONNECT-UX:build:development"
|
|
|
|
"fileReplacements": [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
|
|
|
|
"with": "src/environments/environment.dev.ts"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
"test": {
|
|
|
|
|
|
|
|
"fileReplacements": [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
|
|
|
|
"with": "src/environments/environment.test.ts"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
"defaultConfiguration": "development"
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
"extract-i18n": {
|
|
|
|
"extract-i18n": {
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n"
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
"test": {
|
|
|
|
"test": {
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
"options": {
|
|
|
|
"options": {
|
|
|
|
"polyfills": [
|
|
|
|
"polyfills": ["zone.js", "zone.js/testing"],
|
|
|
|
"zone.js",
|
|
|
|
|
|
|
|
"zone.js/testing"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"tsConfig": "tsconfig.spec.json",
|
|
|
|
"tsConfig": "tsconfig.spec.json",
|
|
|
|
"inlineStyleLanguage": "scss",
|
|
|
|
"inlineStyleLanguage": "scss",
|
|
|
|
"assets": [
|
|
|
|
"assets": [{ "glob": "**/*", "input": "public" }],
|
|
|
|
{
|
|
|
|
"styles": ["src/styles.scss"],
|
|
|
|
"glob": "**/*",
|
|
|
|
|
|
|
|
"input": "public"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"styles": [
|
|
|
|
|
|
|
|
"src/styles.scss"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"scripts": []
|
|
|
|
"scripts": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|