@maskedeng-tom/ssrsx
Version:
server side renderer with tsx
15 lines (14 loc) • 459 B
TypeScript
interface TscOption {
target: string;
module: string;
inlineSourceMap: boolean;
outDir?: string;
removeComments: boolean;
esModuleInterop: boolean;
forceConsistentCasingInFileNames: boolean;
strict: boolean;
skipLibCheck: boolean;
moduleResolution: string;
}
declare const compileAll: (clientRoot: string, outDir: string, tscOptions: TscOption) => Promise<string | false | undefined>;
export { TscOption, compileAll };