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
I would like to see tsconfig.json#compilerOptions.allowJs configuration support for the rollup executor, currently, it is hardcoded as false.
Motivation
This flag allows us to produce typings from JS files and import JS files in TS files, which is very useful when migrating large JS repository files to TypeScript gradually.
Suggested Implementation
Keep false as the default value, but use the configured tsconfig.json value when present.
Alternate Implementations
Actually, I would need to understand why it's hardcoded so I can be able to discuss alternate implementations.
The text was updated successfully, but these errors were encountered:
Am I missing something on the issue template or some important info?
Can't believe this hasn't been even replied and it's very common to have hybrid libraries (TS+JS), which currently can't use the rollup executor!
Description
I would like to see
tsconfig.json#compilerOptions.allowJs
configuration support for the rollup executor, currently, it is hardcoded asfalse
.Motivation
This flag allows us to produce typings from JS files and import JS files in TS files, which is very useful when migrating large JS repository files to TypeScript gradually.
Suggested Implementation
Keep
false
as the default value, but use the configured tsconfig.json value when present.Alternate Implementations
Actually, I would need to understand why it's hardcoded so I can be able to discuss alternate implementations.
The text was updated successfully, but these errors were encountered: