Advertisement
Guest User

Untitled

a guest
Apr 14th, 2021
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.21 KB | None | 0 0
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "ngx-admin-demo": {
  7. "root": "",
  8. "sourceRoot": "src",
  9. "projectType": "application",
  10. "architect": {
  11. "build": {
  12. "builder": "@angular-devkit/build-angular:browser",
  13. "options": {
  14. "preserveSymlinks": true,
  15. "rebaseRootRelativeCssUrls": true,
  16. "outputPath": "dist",
  17. "index": "src/index.html",
  18. "main": "src/main.ts",
  19. "tsConfig": "src/tsconfig.app.json",
  20. "polyfills": "src/polyfills.ts",
  21. "assets": [
  22. "src/assets",
  23. "src/favicon.ico",
  24. "src/favicon.png",
  25. {
  26. "glob": "**/*",
  27. "input": "node_modules/leaflet/dist/images",
  28. "output": "/assets/img/markers"
  29. },
  30. {
  31. "glob": "**/*",
  32. "input": "node_modules/tinymce/skins",
  33. "output": "/skins/"
  34. },
  35. {
  36. "glob": "**/*",
  37. "input": "node_modules/tinymce/themes",
  38. "output": "/themes/"
  39. },
  40. {
  41. "glob": "**/*",
  42. "input": "node_modules/tinymce/plugins",
  43. "output": "/plugins/"
  44. },
  45. {
  46. "glob": "**/*",
  47. "input": "tinymce/langs",
  48. "output": "/langs/"
  49. }
  50. ],
  51. "styles": [
  52. "node_modules/bootstrap/dist/css/bootstrap.css",
  53. "node_modules/typeface-exo/index.css",
  54. "node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
  55. "node_modules/ionicons/scss/ionicons.scss",
  56. "node_modules/@fortawesome/fontawesome-free/css/all.css",
  57. "node_modules/socicon/css/socicon.css",
  58. "node_modules/nebular-icons/scss/nebular-icons.scss",
  59. "node_modules/angular-tree-component/dist/angular-tree-component.css",
  60. "node_modules/pace-js/templates/pace-theme-flash.tmpl.css",
  61. "node_modules/leaflet/dist/leaflet.css",
  62. "src/app/@theme/styles/styles.scss",
  63. "src/assets/zi/styles.scss",
  64. "src/assets/awr/fonts/GE_SS_TWO/style.css",
  65. "src/assets/awr/fonts/Calibri/style.css",
  66. "src/assets/awr/fonts/NeoSansArabic/style.css",
  67. "node_modules/ngx-toastr/toastr.css"
  68. ],
  69. "scripts": [
  70. "node_modules/pace-js/pace.min.js",
  71. "node_modules/@fortawesome/fontawesome-free/js/all.min.js",
  72. "node_modules/echarts/dist/echarts.min.js",
  73. "node_modules/echarts/dist/extension/bmap.min.js",
  74. "node_modules/chart.js/dist/Chart.min.js",
  75. "node_modules/jquery/dist/jquery.js",
  76. "node_modules/tinymce/tinymce.min.js"
  77. ]
  78. },
  79. "configurations": {
  80. "production": {
  81. "optimization": true,
  82. "outputHashing": "all",
  83. "sourceMap": false,
  84. "extractCss": true,
  85. "namedChunks": false,
  86. "aot": true,
  87. "extractLicenses": true,
  88. "vendorChunk": false,
  89. "buildOptimizer": true,
  90. "fileReplacements": [
  91. {
  92. "replace": "src/environments/environment.ts",
  93. "with": "src/environments/environment.prod.ts"
  94. }
  95. ]
  96. }
  97. }
  98. },
  99. "serve": {
  100. "builder": "@angular-devkit/build-angular:dev-server",
  101. "options": {
  102. "browserTarget": "ngx-admin-demo:build",
  103. "proxyConfig": "src/proxy.conf.json"
  104. },
  105. "configurations": {
  106. "production": {
  107. "browserTarget": "ngx-admin-demo:build:production"
  108. }
  109. }
  110. },
  111. "extract-i18n": {
  112. "builder": "@angular-devkit/build-angular:extract-i18n",
  113. "options": {
  114. "browserTarget": "ngx-admin-demo:build"
  115. }
  116. },
  117. "test": {
  118. "builder": "@angular-devkit/build-angular:karma",
  119. "options": {
  120. "main": "src/test.ts",
  121. "karmaConfig": "./karma.conf.js",
  122. "polyfills": "src/polyfills.ts",
  123. "tsConfig": "src/tsconfig.spec.json",
  124. "scripts": [
  125. "node_modules/pace-js/pace.min.js",
  126. "node_modules/echarts/dist/echarts.min.js",
  127. "node_modules/echarts/dist/extension/bmap.min.js",
  128. "node_modules/chart.js/dist/Chart.min.js"
  129. ],
  130. "styles": [
  131. "node_modules/bootstrap/dist/css/bootstrap.css",
  132. "node_modules/typeface-exo/index.css",
  133. "node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
  134. "node_modules/ionicons/scss/ionicons.scss",
  135. "node_modules/font-awesome/scss/font-awesome.scss",
  136. "node_modules/socicon/css/socicon.css",
  137. "node_modules/nebular-icons/scss/nebular-icons.scss",
  138. "node_modules/pace-js/templates/pace-theme-flash.tmpl.css",
  139. "src/app/@theme/styles/styles.scss",
  140. "src/assets/awr/fonts/GE_SS_TWO/style.css",
  141. "src/assets/awr/fonts/Calibri/style.css",
  142. "src/assets/awr/fonts/NeoSansArabic/style.css"
  143. ],
  144. "assets": [
  145. "src/assets",
  146. "src/favicon.ico",
  147. "src/favicon.png",
  148. {
  149. "glob": "**/*",
  150. "input": "node_modules/leaflet/dist/images",
  151. "output": "/assets/img/markers"
  152. }
  153. ]
  154. }
  155. },
  156. "lint": {
  157. "builder": "@angular-devkit/build-angular:tslint",
  158. "options": {
  159. "tsConfig": [
  160. "src/tsconfig.app.json",
  161. "src/tsconfig.spec.json"
  162. ],
  163. "typeCheck": true,
  164. "exclude": [
  165. "src/app/@framework/auth/**/*"
  166. ]
  167. }
  168. }
  169. }
  170. },
  171. "ngx-admin-demo-e2e": {
  172. "root": "",
  173. "sourceRoot": "",
  174. "projectType": "application",
  175. "architect": {
  176. "e2e": {
  177. "builder": "@angular-devkit/build-angular:protractor",
  178. "options": {
  179. "protractorConfig": "./protractor.conf.js",
  180. "devServerTarget": "ngx-admin-demo:serve"
  181. }
  182. },
  183. "lint": {
  184. "builder": "@angular-devkit/build-angular:tslint",
  185. "options": {
  186. "tsConfig": [
  187. "e2e/tsconfig.e2e.json"
  188. ],
  189. "exclude": [
  190. "**/src/app/models/**/*.json"
  191. ]
  192. }
  193. }
  194. }
  195. }
  196. },
  197. "defaultProject": "ngx-admin-demo",
  198. "schematics": {
  199. "@schematics/angular:component": {
  200. "prefix": "ngx",
  201. "styleext": "scss"
  202. },
  203. "@schematics/angular:directive": {
  204. "prefix": "ngx"
  205. }
  206. }
  207. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement