joshjg
joshjg
Try `mergeFragmentTypes: true`
FYI: In our case this was due to comments left by webpack and untouched by uglify, mostly ModuleConcatenationPlugin bailout messages. We solved by turning off `pathinfo` in webpack config.
@ljharb Ran into a similar issue recently - I need to be able to include keys which I have no control over, which unfortunately may include square brackets/dots. I was...
For anyone facing this issue or a similar issue involving JS files, apparently you must specify `allowJs` in the Project constructor - it's not enough for it to be configured...
Could you elaborate?
FYI, the `"module": "nodenext"` solution does not work if you also need `"moduleResolution": "bundler"`. In my case I'm using `bundler` because it matches the behavior of my node loader (extensionless...
Reopening as I'd like to implement this