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 1c6bc39 commit 9f837b1Copy full SHA for 9f837b1
client/src/extension.ts
@@ -38,6 +38,14 @@ export function activate(context: ExtensionContext) {
38
// Options to control the language client
39
const clientOptions: LanguageClientOptions = {
40
documentSelector: [{ scheme: 'file' }, { scheme: 'untitled' }],
41
+ synchronize: {
42
+ fileEvents: [
43
+ workspace.createFileSystemWatcher('**/*.css'),
44
+ workspace.createFileSystemWatcher('**/*.scss'),
45
+ workspace.createFileSystemWatcher('**/*.sass'),
46
+ workspace.createFileSystemWatcher('**/*.less'),
47
+ ]
48
+ }
49
};
50
51
// Create the language client and start the client.
0 commit comments