We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255d02a commit 15cc7c7Copy full SHA for 15cc7c7
src/utils.rs
@@ -44,7 +44,7 @@ pub fn get_rootPath<'a>(
44
match languageId {
45
"rust" => traverse_up(path, |dir| dir.join("Cargo.toml").exists()),
46
"php" => traverse_up(path, |dir| dir.join("composer.json").exists()),
47
- "javascript" | "typescript" | "javascript.jsx" | "typescript.jsx" => {
+ "javascript" | "typescript" | "javascript.jsx" | "typescript.tsx" => {
48
traverse_up(path, |dir| dir.join("package.json").exists())
49
}
50
"python" => traverse_up(path, |dir| {
0 commit comments