You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PNPM's node_modules structure is slightly different therefore the injection script isn't found due to there being two module directories in node_modules: [email protected]/package as opposed to npm's way of only having a package dir. This breaks tsc-hooks.
Problematic code:
require('../../tsc-hooks/lib/injection')
If I wanted to use it with PNPM I would need to edit it to this monstrosity:
PNPM's node_modules structure is slightly different therefore the injection script isn't found due to there being two module directories in node_modules:
[email protected]/package
as opposed to npm's way of only having apackage
dir. This breaks tsc-hooks.Problematic code:
If I wanted to use it with PNPM I would need to edit it to this monstrosity:
The text was updated successfully, but these errors were encountered: