psychobolt

Results 81 comments of psychobolt

Just nothing one work around at the moment is adding `.root/foo` to global dependencies. However that seems to affect all tasks. The `inputs` option supposedly is used to affect one...

Even in TS 5.0, `.storybook` or any dot folders needs to be explicitly included in config.

I was able to get the code highlight syntax for `scss` in my MDX docs with the following snippet in `preview.ts`: ```ts import { SyntaxHighlighter } from '@storybook/components'; import scss...

For Storybook 9, `import { SyntaxHighlighter } from 'storybook/internal/components';`

I have similar issue as @phamhongphuc on Yarn 4 PnP and Storybook Vite 8.2.5. It seems deleting `.yarn.lock` file, deleting the `.cache` folder, and reinstalling with `yarn` resolved the issue....

See here: https://github.com/swc-project/swc-node/issues/807 . Yarn is not supported after > 1.10.1. You will have to downgrade.

This is also a issue with @swc-node/register v1.10.0 (last support with Yarn PnP) and @swc/core v1.13.3. Seems mainly a issue with @swc/core based on above comments.

Seems like the original PR was rejected. In my case, I'm not looking for a code mod feature, but somehow VSCode doesn't really provide great visibility for unused imports e.g....

Seems like you have to explicitly tell TypeScript to warn about unused variables e.g ```json "noUnusedLocals": true ``` ![Screenshot 2024-07-10 at 7 55 34 AM](https://github.com/mightyiam/eslint-config-love/assets/560721/1e79ad26-cd81-4533-9364-0f2302841743) If I turn on this...

Seems like the only workaround is using a portal resolution link e.g. `yarn link -r --private ../../packages/lib`. This prevents creation of the checksum hash altogether... ```json "resolutions": { "lib": "portal:../../packages/lib"...