Brak opisu
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "cli": {
  5. "packageManager": "npm",
  6. "analytics": false
  7. },
  8. "newProjectRoot": "projects",
  9. "projects": {
  10. "kaimyo-management": {
  11. "projectType": "application",
  12. "schematics": {
  13. "@schematics/angular:component": {
  14. "style": "scss"
  15. }
  16. },
  17. "root": "",
  18. "sourceRoot": "src",
  19. "prefix": "app",
  20. "architect": {
  21. "build": {
  22. "builder": "@angular/build:application",
  23. "options": {
  24. "browser": "src/main.ts",
  25. "tsConfig": "tsconfig.app.json",
  26. "inlineStyleLanguage": "scss",
  27. "assets": [
  28. {
  29. "glob": "**/*",
  30. "input": "public"
  31. }
  32. ],
  33. "styles": [
  34. "src/styles.scss"
  35. ]
  36. },
  37. "configurations": {
  38. "production": {
  39. "budgets": [
  40. {
  41. "type": "initial",
  42. "maximumWarning": "500kB",
  43. "maximumError": "1MB"
  44. },
  45. {
  46. "type": "anyComponentStyle",
  47. "maximumWarning": "20kB",
  48. "maximumError": "30kB"
  49. }
  50. ],
  51. "outputHashing": "all"
  52. },
  53. "development": {
  54. "optimization": false,
  55. "extractLicenses": false,
  56. "sourceMap": true
  57. }
  58. },
  59. "defaultConfiguration": "production"
  60. },
  61. "serve": {
  62. "builder": "@angular/build:dev-server",
  63. "configurations": {
  64. "production": {
  65. "buildTarget": "kaimyo-management:build:production"
  66. },
  67. "development": {
  68. "buildTarget": "kaimyo-management:build:development"
  69. }
  70. },
  71. "defaultConfiguration": "development"
  72. },
  73. "test": {
  74. "builder": "@angular/build:unit-test"
  75. }
  76. }
  77. }
  78. }
  79. }