This is a very simple Visual Studio Code extension that sets a few user settings at startup which we can't preset in open-vscodeserver without recompiling the server.
This will set the following user settings at startup:
{
"update.mode": "none",
"telemetry.telemetryLevel": "off"
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false
}
There are no special requirements for this extension.
Setting update.mode
to none
officially requires a restart of Visual Studio Code and therefore may not really achieve much initially.
npm install -g vsce
vsce package
- Upload to a new Github release
Minor update to fix a security issue in an underlying npm dependency.
Minor update to fix a security issue in an underlying npm dependency.
Initial release of training-tweaks