Browse Source

fix(ts): set moduleResolution to bundler

This is a requirement for Storybook 10 migration. See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#require-tsconfigjson-moduleresolution-set-to-value-that-supports-types-condition.
pull/6105/head
Kenrick Tandrian 1 month ago
parent
commit
ae23aa9f1c
  1. 2
      tsconfig.base.json

2
tsconfig.base.json

@ -4,7 +4,7 @@
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,

Loading…
Cancel
Save