Skip to content

Commit 2e13cf2

Browse files
committed
fix: update tsconfig after storybook upgrade
Storybook 10 is ESM-only
1 parent a1714d0 commit 2e13cf2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/storybook/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"compilerOptions": {
33
"jsx": "react-jsx",
44
"allowSyntheticDefaultImports": true,
5-
"skipLibCheck": true
5+
"skipLibCheck": true,
6+
"module": "esnext",
7+
"moduleResolution": "bundler"
68
},
79
"extends": "../../tsconfig.json",
810
"include": ["config/**/*.ts", "config/**/*.tsx", "src/**/*.ts", "src/**/*.tsx"],

0 commit comments

Comments
 (0)