view tsconfig.json @ 256:288f0c458eb6

Add config for directory alias module resolution in TypeScript Reviewed-by: clessard Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-October/025474.html
author Andrew Azores <aazores@redhat.com>
date Thu, 19 Oct 2017 11:36:12 -0400
parents 2eb2ae0f3b3f
children 828e021d52fd
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"
    ]
  },
  "exclude": [
    "node_modules"
  ]
}