diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2019-04-29 15:58:31 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-29 07:58:31 -0700 |
| commit | 1a0f53a807abad0e9ebfcf437f3dade6b01d7f84 (patch) | |
| tree | 013eb8d15383a22a4e2c4c5502ba37035b397903 /cli/msg.fbs | |
| parent | 73be183864d0983821e683198d9a6ea9008f070a (diff) | |
Add support for custom tsconfig.json (#2089)
Use `--config`
Diffstat (limited to 'cli/msg.fbs')
| -rw-r--r-- | cli/msg.fbs | 11 |
1 files changed, 11 insertions, 0 deletions
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; } |
