You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+12
Original file line number
Diff line number
Diff line change
@@ -256,6 +256,18 @@
256
256
"description": "[DEBUG] If enabled (together with debugAttach.enabled), the language server will not immediately launch but instead listen on the specified attach port and wait for a debugger. This is ONLY useful if you need to debug the language server ITSELF.",
257
257
"default": false
258
258
},
259
+
"kotlin.languageServer.watchFiles": {
260
+
"type": "array",
261
+
"default": [
262
+
"**/*.kt",
263
+
"**/*.kts",
264
+
"**/*.java",
265
+
"**/pom.xml",
266
+
"**/build.gradle",
267
+
"**/settings.gradle"
268
+
],
269
+
"description": "Specifies glob patterns of files, which would be watched by LSP client. The LSP client doesn't support watching files outside a workspace folder."
0 commit comments