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
Using this as is I was getting a warning during rollup (!) [plugin typescript] @rollup/plugin-typescript: Rollup 'sourcemap' option must be set to generate source maps. until I found rollup/plugins#1805 which suggests using --configPlugin 'typescript={compilerOptions:{sourceMap:false}}' --sourcemap as options to rollup to fix it, which has been the only thing I've found that has fixed it after a while of searching. Probably worth adding to the package.json's scripts.
The text was updated successfully, but these errors were encountered:
Using this as is I was getting a warning during rollup
(!) [plugin typescript] @rollup/plugin-typescript: Rollup 'sourcemap' option must be set to generate source maps.
until I found rollup/plugins#1805 which suggests using--configPlugin 'typescript={compilerOptions:{sourceMap:false}}' --sourcemap
as options to rollup to fix it, which has been the only thing I've found that has fixed it after a while of searching. Probably worth adding to thepackage.json
'sscripts
.The text was updated successfully, but these errors were encountered: