diff --git a/app/scripts/index.ts b/app/scripts/index.ts index 4b6bb156b..2135bf790 100644 --- a/app/scripts/index.ts +++ b/app/scripts/index.ts @@ -22,6 +22,7 @@ import type { InternalNavLink, NavItemType } from '$components/common/page-header/types'; +import type { DatasetData, StoryData } from '$types/veda'; import ExplorationAndAnalysis from '$components/exploration'; import useTimelineDatasetAtom from '$components/exploration/hooks/use-timeline-dataset-atom'; @@ -80,6 +81,8 @@ export { NavItem, NavItemType, InternalNavLink, + DatasetData, + StoryData, // STATE timelineDatasetsAtom, diff --git a/package.json b/package.json index be020b525..80bea2d32 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,9 @@ "module": "lib/module.js", "types": "lib/index.d.ts", "browserslist": "> 0.5%, last 2 versions, not dead", + "files": [ + "lib" + ], "scripts": { "serve": "NODE_ENV=development gulp serve", "build": "NODE_ENV=production gulp",