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.

113 lines
3.1 KiB

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