UNPKG

283 BPlain TextView Raw
1import './src/polyfills';
2
3const coreContext = (<{ context?: Function }>require).context('./src', true, /\.ts/);
4coreContext.keys().forEach(coreContext);
5
6const testContext = (<{ context?: Function }>require).context('./test', true, /\.ts/);
7testContext.keys().forEach(testContext);