ENI Process Project Angular
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.

117 lines
3.3KB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "cli": {
  4. "analytics": "24d3339d-3296-4758-a2bf-690d684fdf7c"
  5. },
  6. "version": 1,
  7. "newProjectRoot": "projects",
  8. "projects": {
  9. "eni": {
  10. "projectType": "application",
  11. "schematics": {
  12. "@schematics/angular:component": {
  13. "style": "sass"
  14. },
  15. "@schematics/angular:application": {
  16. "strict": true
  17. }
  18. },
  19. "root": "",
  20. "sourceRoot": "src",
  21. "prefix": "app",
  22. "architect": {
  23. "build": {
  24. "builder": "@angular-devkit/build-angular:browser",
  25. "options": {
  26. "outputPath": "dist/eni",
  27. "index": "src/index.html",
  28. "main": "src/main.ts",
  29. "polyfills": "src/polyfills.ts",
  30. "tsConfig": "tsconfig.app.json",
  31. "inlineStyleLanguage": "sass",
  32. "assets": [
  33. "src/favicon.ico",
  34. "src/assets"
  35. ],
  36. "styles": [
  37. "./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
  38. "src/styles.sass"
  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. "fileReplacements": [
  57. {
  58. "replace": "src/environments/environment.ts",
  59. "with": "src/environments/environment.prod.ts"
  60. }
  61. ],
  62. "outputHashing": "all"
  63. },
  64. "development": {
  65. "buildOptimizer": false,
  66. "optimization": false,
  67. "vendorChunk": true,
  68. "extractLicenses": false,
  69. "sourceMap": true,
  70. "namedChunks": true
  71. }
  72. },
  73. "defaultConfiguration": "production"
  74. },
  75. "serve": {
  76. "builder": "@angular-devkit/build-angular:dev-server",
  77. "configurations": {
  78. "production": {
  79. "browserTarget": "eni:build:production"
  80. },
  81. "development": {
  82. "browserTarget": "eni:build:development"
  83. }
  84. },
  85. "defaultConfiguration": "development"
  86. },
  87. "extract-i18n": {
  88. "builder": "@angular-devkit/build-angular:extract-i18n",
  89. "options": {
  90. "browserTarget": "eni:build"
  91. }
  92. },
  93. "test": {
  94. "builder": "@angular-devkit/build-angular:karma",
  95. "options": {
  96. "main": "src/test.ts",
  97. "polyfills": "src/polyfills.ts",
  98. "tsConfig": "tsconfig.spec.json",
  99. "karmaConfig": "karma.conf.js",
  100. "inlineStyleLanguage": "sass",
  101. "assets": [
  102. "src/favicon.ico",
  103. "src/assets"
  104. ],
  105. "styles": [
  106. "./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
  107. "src/styles.sass"
  108. ],
  109. "scripts": []
  110. }
  111. }
  112. }
  113. }
  114. },
  115. "defaultProject": "eni"
  116. }