From fd5a12d7e25dc53238e2bbcffe970e646c1035f3 Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Fri, 24 Jun 2022 10:04:45 -0300 Subject: refactor(snapshots): to their own crate (#14794) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- cli/lsp/tsc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/lsp') diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index 6ff4cba00..2a5bdc2d8 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -2618,7 +2618,7 @@ fn op_script_version( fn js_runtime(performance: Arc) -> JsRuntime { JsRuntime::new(RuntimeOptions { extensions: vec![init_extension(performance)], - startup_snapshot: Some(tsc::compiler_snapshot()), + startup_snapshot: Some(deno_snapshots::tsc_snapshot()), ..Default::default() }) } -- cgit v1.2.3