UNPKG

code-migration-helpers

Version:

Provides useful (but currently not thorough) code migration helpers

6 lines 227 B
import ts from 'typescript'; export function getSourceFile(filepath) { const program = ts.createProgram([filepath], { allowJs: true }); return program.getSourceFile(filepath); } //# sourceMappingURL=getSourceFile.js.map