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
+13-3
Original file line number
Diff line number
Diff line change
@@ -1602,9 +1602,19 @@
1602
1602
"default": "command"
1603
1603
},
1604
1604
"objectscript.syncLocalChanges": {
1605
-
"description": "Controls whether files in client-side workspace folders that are created, deleted, or changed are automatically synced to the server. Synching will occur whether changes are made due to user actions in VS Code (for example, saving a file that's being actively edited) or outside of VS Code (for example, deleting a file from the OS file explorer while VS Code has its folder open).",
1606
-
"type": "boolean",
1607
-
"default": true
1605
+
"description": "Controls the sources of file events (changes, creation, deletion) in client-side workspace folders that trigger automatic synchronization with the server.",
1606
+
"type": "string",
1607
+
"enum": [
1608
+
"all",
1609
+
"vscodeOnly",
1610
+
"none"
1611
+
],
1612
+
"enumDescriptions": [
1613
+
"All file events are automatically synced to the server, whether made due to user actions in VS Code (for example, saving a file that's being actively edited) or outside of VS Code (for example, deleting a file from the OS file explorer while VS Code has its folder open).",
1614
+
"Only file events made due to user actions in VS Code are automatically synced to the server.",
1615
+
"No file events are automatically synced to the server."
1616
+
],
1617
+
"default": "all"
1608
1618
},
1609
1619
"objectscript.outputRESTTraffic": {
1610
1620
"description": "If true, REST requests and responses to and from InterSystems servers will be logged to the ObjectScript Output channel. This should only be enabled when debugging a potential issue.",
0 commit comments