diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 0923f02442e..3373104e060 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -1,7 +1,7 @@ import { Preview } from '@storybook/react'; -import { Box } from '@ag.ds-next/react/src/box'; -import { Core } from '@ag.ds-next/react/src/core'; -import { theme as agriculture } from '@ag.ds-next/react/src/ag-branding'; +import { Box } from '../packages/react/src/box'; +import { Core } from '../packages/react/src/core'; +import { theme as agriculture } from '../packages/react/src/ag-branding'; import { LinkComponent } from './components/LinkComponent'; const storybookThemes = { diff --git a/tsconfig.json b/tsconfig.json index 036f84613e1..c538b84544e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,11 +16,6 @@ "jsxImportSource": "@emotion/react", "incremental": true }, - "include": [ - "**/*.ts", - "**/*.tsx", - ".storybook/**/*.tsx", - ".storybook/preview.tsx" - ], + "include": ["**/*.ts", "**/*.tsx", ".storybook/**/*.tsx"], "exclude": ["node_modules", "packages/react/**/dist/*"] }