MeirionHughes / aurelia-cli-electron-app

A basic example of aurelia (cli) running in electron with vscode breakpoint debugging
31 stars 3 forks source link

Incorrect filesGlob mapping in tsconfig.json #1

Closed javiercbk closed 8 years ago

javiercbk commented 8 years ago

It seems that there is an incorrect mapping in tsconfig.json regarding filesGlob option.

The mapping is the following:

"filesGlob": [
    "./src/**/*.ts",
    "./test/**/*.ts",
    "./typings/index.d.ts",
    "./custom_typings/**/*.d.ts"
  ],

Shouldn't it be replaced by the following?

"filesGlob": [
    "./source/**/*.ts",
    "./test/**/*.ts",
    "./typings/index.d.ts",
    "./custom_typings/**/*.d.ts"
  ],

By the way, this is an awesome project!

MeirionHughes commented 8 years ago

fixed.