()
| 168 | // #region Plugins |
| 169 | |
| 170 | function enableSourceMapsInWatchModePlugin(): Plugin { |
| 171 | return { |
| 172 | name: 'enable-source-maps', |
| 173 | outputOptions(options) { |
| 174 | if (this.meta.watchMode && !disableSourceMap) { |
| 175 | options.sourcemap = 'inline' |
| 176 | } |
| 177 | }, |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | function writeTypesPlugin(): Plugin { |
| 182 | return { |