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
This is the behavior in every version I tried, and I reviewed the FAQ for entries about quantum tunneling
β― Playground Link
No response
π» Code
// index.jsmodule.exports=functionfoo(args){const{ bar, ...extraArgs}=args;returnextraArgs;}
npm i tslib
tsc --checkJs --importHelpers --module commonjs --noEmit index.js
π Actual behavior
index.js:2:19 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.
2 const { bar, ...extraArgs } = args;
~~~~~~~~~