UNPKG

@maskedeng-tom/ssrsx

Version:
15 lines (14 loc) 459 B
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 };