mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
import * as tsTypes from "typescript";
|
|
|
|
export let tsModule: typeof tsTypes;
|
|
|
|
export function setTypescriptModule(override: typeof tsTypes)
|
|
{
|
|
tsModule = override;
|
|
}
|