Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

angular.json 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "svc-configure-frontend": {
  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:application",
  19. "options": {
  20. "outputPath": "dist/svc-configure-frontend",
  21. "index": "src/index.html",
  22. "browser": "src/main.ts",
  23. "polyfills": [
  24. "zone.js"
  25. ],
  26. "tsConfig": "tsconfig.app.json",
  27. "inlineStyleLanguage": "scss",
  28. "assets": [
  29. {
  30. "glob": "**/*",
  31. "input": "public"
  32. },
  33. {
  34. "glob": "**/*",
  35. "input": "src/assets"
  36. }
  37. ],
  38. "styles": [
  39. "src/styles.scss",
  40. "node_modules/tabulator-tables/dist/css/tabulator_semanticui.min.css"
  41. ],
  42. "scripts": [
  43. "node_modules/tabulator-tables/dist/js/tabulator.min.js"
  44. ],
  45. "allowedCommonJsDependencies": ["ag-grid-angular", "ag-grid-community", "tabulator-tables"]
  46. },
  47. "configurations": {
  48. "production": {
  49. "budgets": [
  50. {
  51. "type": "initial",
  52. "maximumWarning": "1MB",
  53. "maximumError": "2MB"
  54. },
  55. {
  56. "type": "anyComponentStyle",
  57. "maximumWarning": "4kB",
  58. "maximumError": "8kB"
  59. }
  60. ],
  61. "outputHashing": "all"
  62. },
  63. "development": {
  64. "optimization": false,
  65. "extractLicenses": false,
  66. "sourceMap": true
  67. }
  68. },
  69. "defaultConfiguration": "production"
  70. },
  71. "serve": {
  72. "builder": "@angular-devkit/build-angular:dev-server",
  73. "configurations": {
  74. "production": {
  75. "buildTarget": "svc-configure-frontend:build:production"
  76. },
  77. "development": {
  78. "buildTarget": "svc-configure-frontend:build:development",
  79. "proxyConfig": "proxy.conf.json"
  80. }
  81. },
  82. "defaultConfiguration": "development"
  83. },
  84. "extract-i18n": {
  85. "builder": "@angular-devkit/build-angular:extract-i18n"
  86. },
  87. "test": {
  88. "builder": "@angular-devkit/build-angular:karma",
  89. "options": {
  90. "polyfills": [
  91. "zone.js",
  92. "zone.js/testing"
  93. ],
  94. "tsConfig": "tsconfig.spec.json",
  95. "inlineStyleLanguage": "scss",
  96. "assets": [
  97. {
  98. "glob": "**/*",
  99. "input": "public"
  100. },
  101. {
  102. "glob": "**/*",
  103. "input": "src/assets"
  104. }
  105. ],
  106. "styles": [
  107. "src/styles.scss"
  108. ],
  109. "scripts": []
  110. }
  111. }
  112. }
  113. }
  114. },
  115. "cli": {
  116. "analytics": "7022959f-822a-4e97-8b55-0e5d324e3595"
  117. }
  118. }