From 1a0f53a807abad0e9ebfcf437f3dade6b01d7f84 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Mon, 29 Apr 2019 15:58:31 +0100 Subject: Add support for custom tsconfig.json (#2089) Use `--config` --- cli/msg.fbs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'cli/msg.fbs') diff --git a/cli/msg.fbs b/cli/msg.fbs index d217fc7ba..ff5454a91 100644 --- a/cli/msg.fbs +++ b/cli/msg.fbs @@ -3,6 +3,8 @@ union Any { Chdir, Chmod, Close, + CompilerConfig, + CompilerConfigRes, CopyFile, Cwd, CwdRes, @@ -174,6 +176,15 @@ table StartRes { no_color: bool; } +table CompilerConfig { + compiler_type: string; +} + +table CompilerConfigRes { + path: string; + data: [ubyte]; +} + table FormatError { error: string; } -- cgit v1.2.3