diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-04-27 21:35:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-27 21:35:41 +0100 |
commit | e0f849289fdb2c2d86f7fb04182c37012ce2bb69 (patch) | |
tree | 71ec2cb094f67d018b77dbac3b102b608596dbf5 /cli/lsp/tsc.rs | |
parent | 8178f758bc249f12fb82fce15a8f63be1b907ddb (diff) |
chore(lsp): remove ConfigSnapshot (#23579)
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index 485401cdf..8a20ffb0f 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -5102,7 +5102,7 @@ mod tests { documents, assets: Default::default(), cache_metadata: CacheMetadata::new(cache), - config: config.snapshot(), + config: Arc::new(config), resolver, } } |