Skip to content

Instantly share code, notes, and snippets.

@andycarrell
Last active October 26, 2017 07:46
Show Gist options
  • Save andycarrell/2fbfa90e1570939ee99b764aa9ceb5f8 to your computer and use it in GitHub Desktop.
Save andycarrell/2fbfa90e1570939ee99b764aa9ceb5f8 to your computer and use it in GitHub Desktop.
Circular imports
import ...
import { SmolComponent } from './SmolComponent';
export class BigOleComponent { }
import ...
import * as example from './BigOleComponent';
console.log(example); // { BigOleComponent: undefined }
export class SmolComponent { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment