vite-typescript-plugin
Version:
A Vite plugin for seamless integration between Vite and Typescript.
8 lines (7 loc) • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSourceFileByPath = void 0;
function getSourceFileByPath(fileName, path, languageVersionOrOptions, onError, shouldCreateNewSourceFile) {
return this.getSourceFile(fileName, languageVersionOrOptions, onError, shouldCreateNewSourceFile);
}
exports.getSourceFileByPath = getSourceFileByPath;