angular.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "AIart-app": {
  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:browser",
  19. "options": {
  20. "outputPath": "www",
  21. "index": "src/index.html",
  22. "main": "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": "**/*.svg",
  33. "input": "node_modules/ionicons/dist/ionicons/svg",
  34. "output": "./svg"
  35. }
  36. ],
  37. "styles": [
  38. "src/styles.scss"
  39. ],
  40. "scripts": [],
  41. "budgets": [
  42. {
  43. "type": "initial",
  44. "maximumWarning": "20mb",
  45. "maximumError": "20mb"
  46. },
  47. {
  48. "type": "anyComponentStyle",
  49. "maximumWarning": "20mb",
  50. "maximumError": "20mb"
  51. }
  52. ]
  53. }
  54. }
  55. }
  56. }
  57. }
  58. }