view tsconfig.json @ 274:bdbc30b9f43c default tip master

Alternative authService migration approach Allows one service instance to be shared between Angular and AngularJS. Reviewed-by: jkang Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-October/025509.html
author Andrew Azores <aazores@redhat.com>
date Thu, 26 Oct 2017 10:47:34 -0400
parents 828e021d52fd
children
line wrap: on
line source

{
  "files": [
    "src/rx-subject.stub.ts",
    "src/main.ts"
  ],
  "compilerOptions": {
    "baseUrl": ".",
    "outDir": "./dist",
    "noImplicitAny": true,
    "target": "es5",
    "experimentalDecorators": true,
    "allowJs": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "paths": {
      "shared/*": ["src/app/shared/*"],
      "components/*": ["src/app/components/*"]
    },
    "lib": [
      "es2015",
      "dom"
    ]
  },
  "include": [
    "src/**/*.ts",
    "src/**/*.d.ts",
    "src/**/*.spec.ts",
    "src/**/*.spec.js",
    "src/**/*.js"
  ],
  "exclude": [
    "node_modules"
  ]
}