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.

107 lines
2.9 KiB

4 days ago
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "CalendarManager": {
  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/calendar-manager",
  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. "styles": [
  35. "src/styles.scss"
  36. ],
  37. "scripts": [],
  38. "server": "src/main.server.ts",
  39. "outputMode": "server",
  40. "ssr": {
  41. "entry": "src/server.ts"
  42. }
  43. },
  44. "configurations": {
  45. "production": {
  46. "budgets": [
  47. {
  48. "type": "initial",
  49. "maximumWarning": "500kB",
  50. "maximumError": "1MB"
  51. },
  52. {
  53. "type": "anyComponentStyle",
  54. "maximumWarning": "4kB",
  55. "maximumError": "8kB"
  56. }
  57. ],
  58. "outputHashing": "all"
  59. },
  60. "development": {
  61. "optimization": false,
  62. "extractLicenses": false,
  63. "sourceMap": true
  64. }
  65. },
  66. "defaultConfiguration": "production"
  67. },
  68. "serve": {
  69. "builder": "@angular-devkit/build-angular:dev-server",
  70. "configurations": {
  71. "production": {
  72. "buildTarget": "CalendarManager:build:production"
  73. },
  74. "development": {
  75. "buildTarget": "CalendarManager:build:development"
  76. }
  77. },
  78. "defaultConfiguration": "development"
  79. },
  80. "extract-i18n": {
  81. "builder": "@angular-devkit/build-angular:extract-i18n"
  82. },
  83. "test": {
  84. "builder": "@angular-devkit/build-angular:karma",
  85. "options": {
  86. "polyfills": [
  87. "zone.js",
  88. "zone.js/testing"
  89. ],
  90. "tsConfig": "tsconfig.spec.json",
  91. "inlineStyleLanguage": "scss",
  92. "assets": [
  93. {
  94. "glob": "**/*",
  95. "input": "public"
  96. }
  97. ],
  98. "styles": [
  99. "src/styles.scss"
  100. ],
  101. "scripts": []
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }