(
options?: BundleSourceMapOptions,
)
| 244 | } |
| 245 | |
| 246 | generateMap( |
| 247 | options?: BundleSourceMapOptions, |
| 248 | ): Omit<SourceMap, 'sourcesContent'> & { sourcesContent: Array<string | null> } { |
| 249 | return new SourceMap(this.generateDecodedMap(options)) as Omit<SourceMap, 'sourcesContent'> & { |
| 250 | sourcesContent: Array<string | null> |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | getIndentString(): string { |
| 255 | const indentStringCounts = {} |
no test coverage detected