typescript-to-lua
Version:
A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!
30 lines (29 loc) • 916 B
TypeScript
import { SourceNode } from "source-map";
import * as ts from "typescript";
import * as lua from "../LuaAST";
export interface EmitHost {
directoryExists(path: string): boolean;
fileExists(path: string): boolean;
getCurrentDirectory(): string;
readFile(path: string): string | undefined;
writeFile: ts.WriteFileCallback;
}
interface BaseFile {
code: string;
sourceMap?: string;
sourceFiles?: ts.SourceFile[];
}
export interface ProcessedFile extends BaseFile {
fileName: string;
luaAst?: lua.File;
sourceMapNode?: SourceNode;
}
export interface EmitFile extends BaseFile {
outputPath: string;
}
export declare const getConfigDirectory: (options: ts.CompilerOptions) => string;
export declare function resolvePlugin(kind: string, optionName: string, basedir: string, query: unknown, importName?: string): {
error?: ts.Diagnostic;
result?: unknown;
};
export {};