**Describe the bug** (Some) Ladle Types cannot be resolved correctly with Node16 resolution **Reproduction** - pnpm create vite my-react-app --template react-ts - pnpm i - Add a story using a decorator, the example from the website is sufficient: ```` import type { Story, StoryDecorator } from "@ladle/react"; export default { decorators: [ (Component, context) => ( {context.globalState.control.label.value} ), ] as StoryDecorator[], }; const Card: Story<{ label: string; }> = ({ label }) => Label: {label}; Card.args = { label: "Hello", }; ```` - pnpm tsc --noemit shows no errors: - Change node resolution to Node16 in tsconfig.json - pnpm tsc --noemit shows now errors: