From 7b3d515d705878821c4327a98603242d0e1e9faa Mon Sep 17 00:00:00 2001 From: Chris Bajorin Date: Wed, 27 May 2020 11:33:20 -0400 Subject: [PATCH] added top level export parseConfigFileWithSystem --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index c828369df..3d060a994 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ export { version } from "./cli/information"; export { parseCommandLine, ParsedCommandLine, updateParsedConfigFile } from "./cli/parse"; export * from "./cli/report"; +export { parseConfigFileWithSystem } from "./cli/tsconfig"; export * from "./CompilerOptions"; export * from "./LuaAST"; export { LuaLibFeature } from "./LuaLib";