File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,17 @@ import * as path from "path";
33import * as ts from "typescript" ;
44import { parseConfigFileWithSystem } from "./CommandLineParser" ;
55import { CompilerOptions } from "./CompilerOptions" ;
6- import { transpile , TranspileResult , TranspiledFile } from "./Transpile" ;
6+ import { transpile , TranspiledFile , TranspileResult } from "./Transpile" ;
77
88export { parseCommandLine , ParsedCommandLine , updateParsedConfigFile } from "./CommandLineParser" ;
9- export { CompilerOptions , LuaLibImportKind , LuaTarget } from "./CompilerOptions" ;
9+ export * from "./CompilerOptions" ;
1010export * from "./Emit" ;
1111export * from "./LuaAST" ;
1212export { LuaLibFeature } from "./LuaLib" ;
13- export { LuaPrinter } from "./LuaPrinter" ;
14- export { LuaTransformer } from "./LuaTransformer" ;
13+ export * from "./LuaPrinter" ;
14+ export * from "./LuaTransformer" ;
1515export * from "./Transpile" ;
16+ export * from "./TranspileError" ;
1617
1718export function transpileFiles (
1819 rootNames : string [ ] ,
You can’t perform that action at this time.
0 commit comments