Anonymous 3D Imageboard http://cyberia.digital/
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.

129 lines
3.7KB

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