We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2d91e1 commit c34fe70Copy full SHA for c34fe70
packages/plugin-source-map-explorer/src/mod.ts
@@ -2,7 +2,10 @@ import { resolvePath } from '@modus/gimbal-core/lib/utils/fs';
2
import bytes from 'bytes';
3
import globby from 'globby';
4
import minimatch from 'minimatch';
5
-import explore, { ExploreBundleResult, ExploreResult } from 'source-map-explorer';
+// @ts-ignore
6
+import explore from 'source-map-explorer';
7
+// looks like their types are nested in the src dir of dist...
8
+import { ExploreBundleResult, ExploreResult } from 'source-map-explorer/dist/src';
9
import { Report, ReportItem } from '@/typings/command';
10
import { PluginOptions } from '@/typings/config/plugin';
11
import { Options } from '@/typings/module/registry';
0 commit comments