Fix tsc compile issues

Module commons-vscode renamed
This commit is contained in:
Kris De Volder
2018-04-02 10:29:47 -07:00
parent e6723005df
commit b78efcde18
4 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
// Import the module and reference it with the alias vscode in your code below
import * as VSCode from 'vscode';
import * as commons from 'commons-vscode';
import * as commons from '@pivotal-tools/commons-vscode';
import * as Path from 'path';
import * as FS from 'fs';
import * as Net from 'net';

View File

@@ -3,7 +3,7 @@
// Import the module and reference it with the alias vscode in your code below
import * as VSCode from 'vscode';
import * as commons from 'commons-vscode';
import * as commons from '@pivotal-tools/commons-vscode';
import * as Path from 'path';
import * as FS from 'fs';
import * as Net from 'net';

View File

@@ -3,7 +3,7 @@
// Import the module and reference it with the alias vscode in your code below
import * as VSCode from 'vscode';
import * as commons from 'commons-vscode';
import * as commons from '@pivotal-tools/commons-vscode';
import * as Path from 'path';
import * as FS from 'fs';
import * as Net from 'net';

View File

@@ -8,7 +8,7 @@ import * as ChildProcess from 'child_process';
import {LanguageClient, LanguageClientOptions, SettingMonitor, ServerOptions, StreamInfo} from 'vscode-languageclient';
import { workspace, TextDocument } from 'vscode';
import * as commons from 'commons-vscode';
import * as commons from '@pivotal-tools/commons-vscode';
const PROPERTIES_LANGUAGE_ID = "spring-boot-properties";
const YAML_LANGUAGE_ID = "spring-boot-properties-yaml";