vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
15 lines (14 loc) • 415 B
TypeScript
export { rollupSourceMapRemove };
export { rollupSourceMapPassthrough };
/** Remove entire source mapping, to save KBs. */
declare function rollupSourceMapRemove(code: string): {
code: string;
map: {
mappings: '';
};
};
/** Don't provide any source map, pass through current source map instead. */
declare function rollupSourceMapPassthrough(code: string): {
code: string;
map: null;
};