Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 line
3.9KB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "broker": {
  7. "projectType": "application",
  8. "schematics": {
  9. "@schematics/angular:component": {
  10. "style": "scss"
  11. }
  12. },
  13. "root": "",
  14. "sourceRoot": "src",
  15. "prefix": "app",
  16. "architect": {
  17. "build": {
  18. "builder": "@angular-devkit/build-angular:browser",
  19. "options": {
  20. "outputPath": "dist/broker",
  21. "index": "src/index.html",
  22. "main": "src/main.ts",
  23. "polyfills": "src/polyfills.ts",
  24. "tsConfig": "tsconfig.app.json",
  25. "aot": true,
  26. "assets": [
  27. "src/favicon.ico",
  28. "src/assets"
  29. ],
  30. "styles": [
  31. "node_modules/bootstrap/dist/css/bootstrap.min.css",
  32. {
  33. "input": "node_modules/@progress/kendo-theme-default/dist/all.css"
  34. },
  35. "src/styles.scss"
  36. ],
  37. "scripts": []
  38. },
  39. "configurations": {
  40. "production": {
  41. "fileReplacements": [
  42. {
  43. "replace": "src/environments/environment.ts",
  44. "with": "src/environments/environment.prod.ts"
  45. }
  46. ],
  47. "optimization": true,
  48. "outputHashing": "all",
  49. "sourceMap": false,
  50. "extractCss": true,
  51. "namedChunks": false,
  52. "extractLicenses": true,
  53. "vendorChunk": false,
  54. "buildOptimizer": true,
  55. "budgets": [
  56. {
  57. "type": "initial",
  58. "maximumWarning": "2mb",
  59. "maximumError": "5mb"
  60. },
  61. {
  62. "type": "anyComponentStyle",
  63. "maximumWarning": "6kb",
  64. "maximumError": "10kb"
  65. }
  66. ]
  67. }
  68. }
  69. },
  70. "serve": {
  71. "builder": "@angular-devkit/build-angular:dev-server",
  72. "options": {
  73. "browserTarget": "broker:build"
  74. },
  75. "configurations": {
  76. "production": {
  77. "browserTarget": "broker:build:production"
  78. }
  79. }
  80. },
  81. "extract-i18n": {
  82. "builder": "@angular-devkit/build-angular:extract-i18n",
  83. "options": {
  84. "browserTarget": "broker:build"
  85. }
  86. },
  87. "test": {
  88. "builder": "@angular-devkit/build-angular:karma",
  89. "options": {
  90. "main": "src/test.ts",
  91. "polyfills": "src/polyfills.ts",
  92. "tsConfig": "tsconfig.spec.json",
  93. "karmaConfig": "karma.conf.js",
  94. "assets": [
  95. "src/favicon.ico",
  96. "src/assets"
  97. ],
  98. "styles": [
  99. {
  100. "input": "node_modules/@progress/kendo-theme-default/dist/all.css"
  101. },
  102. "src/styles.scss"
  103. ],
  104. "scripts": []
  105. }
  106. },
  107. "lint": {
  108. "builder": "@angular-devkit/build-angular:tslint",
  109. "options": {
  110. "tsConfig": [
  111. "tsconfig.app.json",
  112. "tsconfig.spec.json",
  113. "e2e/tsconfig.json"
  114. ],
  115. "exclude": [
  116. "**/node_modules/**"
  117. ]
  118. }
  119. },
  120. "e2e": {
  121. "builder": "@angular-devkit/build-angular:protractor",
  122. "options": {
  123. "protractorConfig": "e2e/protractor.conf.js",
  124. "devServerTarget": "broker:serve"
  125. },
  126. "configurations": {
  127. "production": {
  128. "devServerTarget": "broker:serve:production"
  129. }
  130. }
  131. }
  132. }
  133. }
  134. },
  135. "defaultProject": "broker"
  136. }