Skip to content

Commit 946f16a

Browse files
committed
Export TranspileError and all LuaTransformer exports from package index
1 parent 1b62fd9 commit 946f16a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/index.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ import * as path from "path";
33
import * as ts from "typescript";
44
import { parseConfigFileWithSystem } from "./CommandLineParser";
55
import { CompilerOptions } from "./CompilerOptions";
6-
import { transpile, TranspileResult, TranspiledFile } from "./Transpile";
6+
import { transpile, TranspiledFile, TranspileResult } from "./Transpile";
77

88
export { parseCommandLine, ParsedCommandLine, updateParsedConfigFile } from "./CommandLineParser";
9-
export { CompilerOptions, LuaLibImportKind, LuaTarget } from "./CompilerOptions";
9+
export * from "./CompilerOptions";
1010
export * from "./Emit";
1111
export * from "./LuaAST";
1212
export { LuaLibFeature } from "./LuaLib";
13-
export { LuaPrinter } from "./LuaPrinter";
14-
export { LuaTransformer } from "./LuaTransformer";
13+
export * from "./LuaPrinter";
14+
export * from "./LuaTransformer";
1515
export * from "./Transpile";
16+
export * from "./TranspileError";
1617

1718
export function transpileFiles(
1819
rootNames: string[],

0 commit comments

Comments
 (0)