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
With the upcoming TS v5 release, importsNotUsedAsValues is being deprecated, and using it in a tsconfig file yields the following error:
error TS5101: Flag 'importsNotUsedAsValues' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
Use 'verbatimModuleSyntax' instead.
While the warning can be temporarily silenced, we'll eventually all have to drop that setting and use verbatimModuleSyntax instead. Do you think it would be a good idea to swap those settings now? I don't suppose this package follows semver since TS itself doesn't, so I'm guessing it shouldn't even be considered a problem to replace importsNotUsedAsValues with verbatimModuleSyntax in a new release soon?
Thanks π
kripod, kachkaev, jasonkuhrt, ouuan, Kurt-von-Laven and 5 more