mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
style(all): tslinter warnings
This commit is contained in:
committed by
Adam Bradley
parent
324f2cb189
commit
ac8e4dce06
@@ -1,3 +1,3 @@
|
||||
export { x as y} from './privateModule';
|
||||
export { x as y } from './privateModule';
|
||||
|
||||
export abstract class AbstractClass {}
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user