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 fe834f8 commit 7823d6fCopy full SHA for 7823d6f
src/main/kotlin/com/emberjs/glint/GlintLspSupportProvider.kt
@@ -107,7 +107,8 @@ class GlintLspServerDescriptor(private val myProject: Project) : LspServerDescri
107
pkg.readOrDetect()
108
val path = pkg.`package`.constantPackage?.systemIndependentPath
109
if (path != null) {
110
- val f = VfsUtil.findFile(Path(path), true)
+ var f = VfsUtil.findFile(Path(path), true)
111
+ f = f?.findFileByRelativePath("bin/glint-language-server.js")
112
113
if (f != null) {
114
return true
0 commit comments