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
It seems like the ts transpiler is only being applied to the typescript files and the js files are taking a different path.
I only assume this because I have optional chaining in both the js and ts files and only the ts files get the proper conversion from ?. operation to chained null checks.
The text was updated successfully, but these errors were encountered:
[email protected] has a dependency on @sindresorhus/[email protected] and it uses optional chaining operator "?.".
Probably due to issue vercel/ncc#873 this syntax got into our dist/index.js. For some unknown reason it results in error when action is executed in GitHub runner despite the node version is 16.17.
I have the following
tsconfig.json
in a mixed project (js/ts):It seems like the ts transpiler is only being applied to the typescript files and the js files are taking a different path.
I only assume this because I have optional chaining in both the js and ts files and only the ts files get the proper conversion from
?.
operation to chained null checks.The text was updated successfully, but these errors were encountered: