/** * Wraps Webpack's built-in SourceMapDevToolPlugin with a post-processing step that makes inline source maps * work with Visual Studio's native debugger. * * The issue this fixes is that VS doesn't like to see 'charset=utf-8;' in the 'sourceMappingURL'. If that string * is present, VS will ignore the source map entirely. Until that VS bug is fixed, we can just strip out the charset * specifier from the URL. It's not needed because tools assume it's utf-8 anyway. */ export declare class SourceMapDevToolPlugin { private options; /** * Constructs an instance of SourceMapDevToolPlugin. * * @param options Options that will be passed through to Webpack's native SourceMapDevToolPlugin. */ constructor(options?: any); protected apply(compiler: any): void; }