style(all): tslinter warnings

This commit is contained in:
Manu Mtz.-Almeida
2016-07-19 22:31:46 +02:00
committed by Adam Bradley
parent 324f2cb189
commit ac8e4dce06
166 changed files with 867 additions and 867 deletions

View File

@@ -1,3 +1,3 @@
export { x as y} from './privateModule';
export { x as y } from './privateModule';
export abstract class AbstractClass {}

View File

@@ -48,7 +48,7 @@ module.exports = function tsParser(createCompilerHost, log) {
tsModule.exportArray = typeChecker.getExportsOfModule(tsModule);
// Although 'star' imports (e.g. `export * from 'some/module';) get resolved automatically
// by the compiler/binder, it seems that explicit imports (e.g. `export {SomeClass} from 'some/module'`)
// by the compiler/binder, it seems that explicit imports (e.g. `export { SomeClass } from 'some/module'`)
// do not so we have to do a little work.
tsModule.exportArray.forEach(function(moduleExport) {
if (moduleExport.flags & ts.SymbolFlags.Alias) {