angular.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "schematics": {
  6. "@schematics/angular:module": {
  7. "spec": false
  8. },
  9. "@schematics/angular:component": {
  10. "styleext": "less",
  11. "spec": false
  12. },
  13. "@schematics/angular:directive": {
  14. "spec": false
  15. },
  16. "@schematics/angular:pipe": {
  17. "spec": false
  18. }
  19. },
  20. "projects": {
  21. "ng-cms": {
  22. "root": "",
  23. "sourceRoot": "src",
  24. "projectType": "application",
  25. "architect": {
  26. "build": {
  27. "builder": "@angular-devkit/build-angular:browser",
  28. "options": {
  29. "outputPath": "dist",
  30. "index": "src/index.html",
  31. "main": "src/main.ts",
  32. "tsConfig": "src/tsconfig.app.json",
  33. "polyfills": "src/polyfills.ts",
  34. "assets": [
  35. "src/assets",
  36. "src/favicon.ico",
  37. {
  38. "glob": "**/*",
  39. "input": "./node_modules/@ant-design/icons-angular/src/inline-svg/",
  40. "output": "/assets/"
  41. }
  42. ],
  43. "styles": [
  44. "src/styles.less"
  45. ],
  46. "scripts": [
  47. "node_modules/@antv/g2/dist/g2.min.js",
  48. "node_modules/@antv/data-set/dist/data-set.min.js",
  49. "node_modules/@antv/g2-plugin-slider/dist/g2-plugin-slider.min.js",
  50. "node_modules/ajv/dist/ajv.bundle.js",
  51. "node_modules/qrious/dist/qrious.min.js"
  52. ]
  53. },
  54. "configurations": {
  55. "production": {
  56. "optimization": true,
  57. "outputHashing": "all",
  58. "sourceMap": false,
  59. "extractCss": true,
  60. "namedChunks": false,
  61. "aot": true,
  62. "extractLicenses": true,
  63. "vendorChunk": false,
  64. "buildOptimizer": true,
  65. "fileReplacements": [
  66. {
  67. "replace": "src/environments/environment.ts",
  68. "with": "src/environments/environment.prod.ts"
  69. }
  70. ]
  71. },
  72. "hmr": {
  73. "fileReplacements": [
  74. {
  75. "replace": "src/environments/environment.ts",
  76. "with": "src/environments/environment.hmr.ts"
  77. }
  78. ]
  79. }
  80. }
  81. },
  82. "serve": {
  83. "builder": "@angular-devkit/build-angular:dev-server",
  84. "options": {
  85. "browserTarget": "ng-cms:build"
  86. },
  87. "configurations": {
  88. "production": {
  89. "browserTarget": "ng-cms:build:production"
  90. },
  91. "hmr": {
  92. "browserTarget": "ng-cms:build:hmr",
  93. "hmr": true
  94. }
  95. }
  96. },
  97. "extract-i18n": {
  98. "builder": "@angular-devkit/build-angular:extract-i18n",
  99. "options": {
  100. "browserTarget": "ng-cms:build"
  101. }
  102. },
  103. "test": {
  104. "builder": "@angular-devkit/build-angular:karma",
  105. "options": {
  106. "main": "src/test.ts",
  107. "karmaConfig": "./src/karma.conf.js",
  108. "polyfills": "src/polyfills.ts",
  109. "tsConfig": "src/tsconfig.spec.json",
  110. "scripts": [
  111. "node_modules/@antv/g2/dist/g2.min.js",
  112. "node_modules/@antv/data-set/dist/data-set.min.js",
  113. "node_modules/@antv/g2-plugin-slider/dist/g2-plugin-slider.min.js",
  114. "node_modules/ajv/dist/ajv.bundle.js",
  115. "node_modules/qrious/dist/qrious.min.js"
  116. ],
  117. "styles": [
  118. ],
  119. "assets": [
  120. "src/assets"
  121. ]
  122. }
  123. },
  124. "lint": {
  125. "builder": "@angular-devkit/build-angular:tslint",
  126. "options": {
  127. "tsConfig": [
  128. "src/tsconfig.app.json",
  129. "src/tsconfig.spec.json"
  130. ],
  131. "exclude": [
  132. "**/node_modules/**"
  133. ]
  134. }
  135. }
  136. }
  137. },
  138. "ng-cms-e2e": {
  139. "root": "",
  140. "sourceRoot": "",
  141. "projectType": "application",
  142. "architect": {
  143. "e2e": {
  144. "builder": "@angular-devkit/build-angular:protractor",
  145. "options": {
  146. "protractorConfig": "./protractor.conf.js",
  147. "devServerTarget": "ng-cms:serve"
  148. }
  149. },
  150. "lint": {
  151. "builder": "@angular-devkit/build-angular:tslint",
  152. "options": {
  153. "tsConfig": [
  154. "e2e/tsconfig.e2e.json"
  155. ],
  156. "exclude": [
  157. "**/node_modules/**"
  158. ]
  159. }
  160. }
  161. }
  162. }
  163. },
  164. "defaultProject": "ng-cms"
  165. }