With this config:
...
plugins:
[
typescript({tsconfig: 'tsconfig.example.json'}),
terser({sourceMap: {content: 'inline', includeSources: true, url: 'inline'}})
]
...
Terser plugin complains with this message:
inline source map not found
Because ...
|
// Force separate source map files for Rollup to work with. |
So Rollup can work with separate source map files, but can the Terser plugin? 🤔 From my research, I don't think it can.
With this config:
Terser plugin complains with this message:
Because ...
plugins/packages/typescript/src/options/normalize.ts
Line 33 in a2e582a
So Rollup can work with separate source map files, but can the Terser plugin? 🤔 From my research, I don't think it can.