UNPKG

@digitak/esrun

Version:

Execute directly your Typescript files using Esbuild

9 lines (8 loc) 295 B
import Runner from "./runners/Runner.js"; import Watcher from "./runners/Watcher.js"; import { Options } from "./types/Options.js"; export { Runner, Watcher, esrun, Options }; /** * Run any .ts or .js file */ export default function esrun(inputFile: string, options?: Options): Promise<void>;