UNPKG

406 BJavaScriptView Raw
1/*
2 * Fix module resolution error with Typescript (for CommonJS components in dist/)
3 * by creating util.js
4 * Current fix is to add explicit .js extension in all components (accordion.ts, modal.ts, etc.)
5 *
6 * Resources:
7 * https://www.typescriptlang.org/docs/handbook/module-resolution.html
8 * https://github.com/Microsoft/TypeScript/issues/16577
9 */
10
11import utils from './utils';
12
13export default utils;