electron-userland / electron-compilers

DEPRECATED: Compiler implementations for electron-compile
35 stars 55 forks source link

Allow extends in typescript configuration #62

Open ghost opened 7 years ago

ghost commented 7 years ago

It'd be nice to be able to set extends in .compilerrc to point to a tsconfig.json file. Then the development configuration could be the same as specified in tsconfig.json.

{
  "env": {
    "development": {
       "text/typescript": {
         "extends": ["../path/to/tsconfig"]
       }
    }
  }
}