Angular web app for entering Techblox commands
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.

130 lines
3.8KB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "TBConsoleClient": {
  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/TBConsoleClient",
  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/@angular/material/prebuilt-themes/indigo-pink.css",
  32. "src/styles.scss"
  33. ],
  34. "scripts": []
  35. },
  36. "configurations": {
  37. "production": {
  38. "fileReplacements": [
  39. {
  40. "replace": "src/environments/environment.ts",
  41. "with": "src/environments/environment.prod.ts"
  42. }
  43. ],
  44. "optimization": true,
  45. "outputHashing": "all",
  46. "sourceMap": false,
  47. "namedChunks": false,
  48. "extractLicenses": true,
  49. "vendorChunk": false,
  50. "buildOptimizer": true,
  51. "budgets": [
  52. {
  53. "type": "initial",
  54. "maximumWarning": "2mb",
  55. "maximumError": "5mb"
  56. },
  57. {
  58. "type": "anyComponentStyle",
  59. "maximumWarning": "6kb",
  60. "maximumError": "10kb"
  61. }
  62. ]
  63. }
  64. }
  65. },
  66. "serve": {
  67. "builder": "@angular-devkit/build-angular:dev-server",
  68. "options": {
  69. "browserTarget": "TBConsoleClient:build"
  70. },
  71. "configurations": {
  72. "production": {
  73. "browserTarget": "TBConsoleClient:build:production"
  74. }
  75. }
  76. },
  77. "extract-i18n": {
  78. "builder": "@angular-devkit/build-angular:extract-i18n",
  79. "options": {
  80. "browserTarget": "TBConsoleClient:build"
  81. }
  82. },
  83. "test": {
  84. "builder": "@angular-devkit/build-angular:karma",
  85. "options": {
  86. "main": "src/test.ts",
  87. "polyfills": "src/polyfills.ts",
  88. "tsConfig": "tsconfig.spec.json",
  89. "karmaConfig": "karma.conf.js",
  90. "assets": [
  91. "src/favicon.ico",
  92. "src/assets"
  93. ],
  94. "styles": [
  95. "./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
  96. "src/styles.scss"
  97. ],
  98. "scripts": []
  99. }
  100. },
  101. "lint": {
  102. "builder": "@angular-devkit/build-angular:tslint",
  103. "options": {
  104. "tsConfig": [
  105. "tsconfig.app.json",
  106. "tsconfig.spec.json",
  107. "e2e/tsconfig.json"
  108. ],
  109. "exclude": [
  110. "**/node_modules/**"
  111. ]
  112. }
  113. },
  114. "e2e": {
  115. "builder": "@angular-devkit/build-angular:protractor",
  116. "options": {
  117. "protractorConfig": "e2e/protractor.conf.js",
  118. "devServerTarget": "TBConsoleClient:serve"
  119. },
  120. "configurations": {
  121. "production": {
  122. "devServerTarget": "TBConsoleClient:serve:production"
  123. }
  124. }
  125. }
  126. }
  127. }},
  128. "defaultProject": "TBConsoleClient"
  129. }