Advertisement
Guest User

angular-cli.json

a guest
Nov 5th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.86 KB | None | 0 0
  1. {
  2.   "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3.   "project": {
  4.     "name": "ff"
  5.   },
  6.   "apps": [
  7.     {
  8.       "root": "src",
  9.       "outDir": "dist",
  10.       "assets": [
  11.         "assets",
  12.         "javascripts",
  13.         "favicon.ico"
  14.       ],
  15.       "index": "index.html",
  16.       "main": "main.ts",
  17.       "polyfills": "polyfills.ts",
  18.       "test": "test.ts",
  19.       "tsconfig": "tsconfig.app.json",
  20.       "testTsconfig": "tsconfig.spec.json",
  21.       "prefix": "app",
  22.       "styles": [
  23.         "styles.css"
  24.       ],
  25.       "scripts": [
  26.         "./javascripts/mousetrap.min.js"
  27.       ],
  28.       "environmentSource": "environments/environment.ts",
  29.       "environments": {
  30.         "dev": "environments/environment.ts",
  31.         "prod": "environments/environment.prod.ts"
  32.       }
  33.     }
  34.   ],
  35.   "e2e": {
  36.     "protractor": {
  37.       "config": "./protractor.conf.js"
  38.     }
  39.   },
  40.   "lint": [
  41.     {
  42.       "project": "src/tsconfig.app.json",
  43.       "exclude": "**/node_modules/**"
  44.     },
  45.     {
  46.       "project": "src/tsconfig.spec.json",
  47.       "exclude": "**/node_modules/**"
  48.     },
  49.     {
  50.       "project": "e2e/tsconfig.e2e.json",
  51.       "exclude": "**/node_modules/**"
  52.     },
  53.     {
  54.       "project": "src/tsconfig.app.json",
  55.       "exclude": "**/javascripts/**"
  56.     }
  57.   ],
  58.   "test": {
  59.     "karma": {
  60.       "config": "./karma.conf.js"
  61.     }
  62.   },
  63.   "defaults": {
  64.     "styleExt": "css",
  65.     "component": {
  66.       "spec": false,
  67.       "inlineStyle": true,
  68.       "inlineTemplate": true
  69.     },
  70.     "directive": {
  71.       "spec": false
  72.     },
  73.     "class": {
  74.       "spec": false
  75.     },
  76.     "guard": {
  77.       "spec": false
  78.     },
  79.     "module": {
  80.       "spec": false
  81.     },
  82.     "pipe": {
  83.       "spec": false
  84.     },
  85.     "service": {
  86.       "spec": false
  87.     }
  88.   },
  89.   "exclude": [
  90.     "dist",
  91.     "node_modules",
  92.     "src/javascripts",
  93.     "**/*.spec.ts"
  94.   ]
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement