microsoft/vscode-policy-watcher is limited to only to the Microsoft vendor.
@vscodium/policy-watcher removes that limit so it can be used by any vender.
const createWatcher = require("@vscodium/policy-watcher");
createWatcher(
// vendor name
"VSCodium",
// product name
"VSCodium",
{
UpdateMode: { type: "string" },
SCMInputFontSize: { type: "number" },
},
(update) => console.log(update)
);