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.
watch
1 parent 6a44787 commit fa30c81Copy full SHA for fa30c81
nx.json
@@ -19,6 +19,9 @@
19
},
20
"build": {
21
"dependsOn": ["^build"]
22
+ },
23
+ "watch": {
24
+ "dependsOn": ["^build"]
25
}
26
27
"workspaceLayout": {
@@ -36,5 +39,10 @@
36
39
"linter": "eslint",
37
40
"unitTestRunner": "jest"
38
41
42
43
+ "pluginsConfig": {
44
+ "@nrwl/js": {
45
+ "analyzeSourceFiles": true
46
+ }
47
48
packages/client/src/extension.ts
@@ -35,6 +35,7 @@ export function activate(context: ExtensionContext): void {
35
documentSelector: [{ scheme: 'file', language: 'ccini' }],
revealOutputChannelOn: RevealOutputChannelOn.Error,
progressOnInitialization: true,
+
};
let client: LanguageClient;
0 commit comments