angular-cli.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "project": {
  3. "version": "1.0.0-beta.28.3",
  4. "name": "frontend"
  5. },
  6. "apps": [
  7. {
  8. "root": "src",
  9. "outDir": "dist",
  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.json",
  19. "prefix": "app",
  20. "styles": [
  21. "styles.css"
  22. ],
  23. "scripts": [],
  24. "environments": {
  25. "source": "environments/environment.ts",
  26. "dev": "environments/environment.ts",
  27. "prod": "environments/environment.prod.ts"
  28. }
  29. }
  30. ],
  31. "e2e": {
  32. "protractor": {
  33. "config": "./protractor.conf.js"
  34. }
  35. },
  36. "lint": [
  37. {
  38. "files": "src/**/*.ts",
  39. "project": "src/tsconfig.json"
  40. },
  41. {
  42. "files": "e2e/**/*.ts",
  43. "project": "e2e/tsconfig.json"
  44. }
  45. ],
  46. "test": {
  47. "karma": {
  48. "config": "./karma.conf.js"
  49. }
  50. },
  51. "defaults": {
  52. "styleExt": "css",
  53. "prefixInterfaces": false,
  54. "inline": {
  55. "style": false,
  56. "template": false
  57. },
  58. "spec": {
  59. "class": false,
  60. "component": true,
  61. "directive": true,
  62. "module": false,
  63. "pipe": true,
  64. "service": true
  65. }
  66. }
  67. }