UNPKG

ts-import

Version:

Import (compile and cache on the fly) TypeScript files dynamically with ease.

10 lines (9 loc) 286 B
import { LoadCompileOptions } from '../../load.interfaces.js'; import tsc from 'typescript'; export declare const getConfig: (options: LoadCompileOptions) => { compilerOptions: tsc.CompilerOptions; } & { compilerOptions: { outDir: string; }; } & LoadCompileOptions;