25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

113 satır
3.2 KiB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "matsen-tool": {
  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/matsen-tool",
  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. "src/favicon.ico",
  30. "src/assets"
  31. ],
  32. "styles": [
  33. "@angular/material/prebuilt-themes/purple-green.css",
  34. "./node_modules/bootstrap/dist/css/bootstrap.min.css",
  35. "src/styles.scss"
  36. ],
  37. "scripts": [
  38. "./node_modules/@popperjs/core/dist/umd/popper.min.js",
  39. "./node_modules/bootstrap/dist/js/bootstrap.min.js"
  40. ],
  41. "server": "src/main.server.ts",
  42. "prerender": true,
  43. "ssr": {
  44. "entry": "server.ts"
  45. }
  46. },
  47. "configurations": {
  48. "production": {
  49. "budgets": [
  50. {
  51. "type": "initial",
  52. "maximumWarning": "500kb",
  53. "maximumError": "1mb"
  54. },
  55. {
  56. "type": "anyComponentStyle",
  57. "maximumWarning": "2kb",
  58. "maximumError": "4kb"
  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": "matsen-tool:build:production"
  76. },
  77. "development": {
  78. "buildTarget": "matsen-tool:build:development"
  79. }
  80. },
  81. "defaultConfiguration": "development"
  82. },
  83. "extract-i18n": {
  84. "builder": "@angular-devkit/build-angular:extract-i18n",
  85. "options": {
  86. "buildTarget": "matsen-tool:build"
  87. }
  88. },
  89. "test": {
  90. "builder": "@angular-devkit/build-angular:karma",
  91. "options": {
  92. "polyfills": [
  93. "zone.js",
  94. "zone.js/testing"
  95. ],
  96. "tsConfig": "tsconfig.spec.json",
  97. "inlineStyleLanguage": "scss",
  98. "assets": [
  99. "src/favicon.ico",
  100. "src/assets"
  101. ],
  102. "styles": [
  103. "@angular/material/prebuilt-themes/purple-green.css",
  104. "src/styles.scss"
  105. ],
  106. "scripts": []
  107. }
  108. }
  109. }
  110. }
  111. }
  112. }