diff options
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index 910d13691..91eb6e24b 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -2834,13 +2834,13 @@ deno_core::extension!(deno_tsc, op_script_names, op_script_version, ], - config = { + options = { performance: Arc<Performance> }, - state = |state, performance| { + state = |state, options| { state.put(State::new( Arc::new(StateSnapshot::default()), - performance, + options.performance, )); }, ); |