diff --git a/crates/copilot/src/copilot.rs b/crates/copilot/src/copilot.rs index 41c8a17c2d..ed18a199bf 100644 --- a/crates/copilot/src/copilot.rs +++ b/crates/copilot/src/copilot.rs @@ -489,7 +489,11 @@ impl Copilot { let node_path = node_runtime.binary_path().await?; ensure_node_version_for_copilot(&node_path).await?; - let arguments: Vec = vec![server_path.into(), "--stdio".into()]; + let arguments: Vec = vec![ + "--experimental-sqlite".into(), + server_path.into(), + "--stdio".into(), + ]; let binary = LanguageServerBinary { path: node_path, arguments,