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.

59 lines
1.2 KiB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "project": {
  4. "name": "WebSPA"
  5. },
  6. "apps": [
  7. {
  8. "root": "Client",
  9. "outDir": "wwwroot",
  10. "assets": [
  11. "assets",
  12. "favicon.ico"
  13. ],
  14. "index": "index.html",
  15. "main": "main.ts",
  16. "polyfills": "polyfills.ts",
  17. "test": "test.ts",
  18. "tsconfig": "tsconfig.app.json",
  19. "testTsconfig": "tsconfig.spec.json",
  20. "prefix": "app",
  21. "styles": [
  22. "globals.scss",
  23. "../node_modules/bootstrap/scss/bootstrap.scss",
  24. "../node_modules/ng2-toastr/bundles/ng2-toastr.min.css"
  25. ],
  26. "scripts": [],
  27. "environmentSource": "environments/environment.ts",
  28. "environments": {
  29. "dev": "environments/environment.ts",
  30. "prod": "environments/environment.prod.ts"
  31. }
  32. }
  33. ],
  34. "e2e": {
  35. "protractor": {
  36. "config": "./protractor.conf.js"
  37. }
  38. },
  39. "lint": [
  40. {
  41. "project": "Client/tsconfig.app.json"
  42. },
  43. {
  44. "project": "Client/tsconfig.spec.json"
  45. },
  46. {
  47. "project": "e2e/tsconfig.e2e.json"
  48. }
  49. ],
  50. "test": {
  51. "karma": {
  52. "config": "./karma.conf.js"
  53. }
  54. },
  55. "defaults": {
  56. "styleExt": "scss",
  57. "component": {}
  58. }
  59. }