summaryrefslogtreecommitdiff
path: root/cli/tsc.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-12-07 21:46:39 +1100
committerGitHub <noreply@github.com>2020-12-07 21:46:39 +1100
commit301d3e4b6849d24154ac2d65c00a9b30223d000e (patch)
treeab3bc074493e6c9be8d1875233bc141bdc0da3b4 /cli/tsc.rs
parentc8e9b2654ec0d54c77bb3f49fa31c3986203d517 (diff)
feat: add mvp language server (#8515)
Resolves #8400
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r--cli/tsc.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs
index 36668f6f7..69373b2fa 100644
--- a/cli/tsc.rs
+++ b/cli/tsc.rs
@@ -284,12 +284,12 @@ fn load(state: &mut State, args: Value) -> Result<Value, AnyError> {
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
-struct ResolveArgs {
+pub struct ResolveArgs {
/// The base specifier that the supplied specifier strings should be resolved
/// relative to.
- base: String,
+ pub base: String,
/// A list of specifiers that should be resolved.
- specifiers: Vec<String>,
+ pub specifiers: Vec<String>,
}
fn resolve(state: &mut State, args: Value) -> Result<Value, AnyError> {