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.

109 line
2.8KB

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