remove console.log
This commit is contained in:
parent
5dcd715888
commit
67239f40b5
1 changed files with 0 additions and 2 deletions
|
@ -223,8 +223,6 @@ export default class TypeScriptServiceClient implements ITypeScriptServiceClient
|
||||||
private startService(resendModels = false): ForkedTsServerProcess | undefined {
|
private startService(resendModels = false): ForkedTsServerProcess | undefined {
|
||||||
const { ignoreLocalTsserver } = this.configuration
|
const { ignoreLocalTsserver } = this.configuration
|
||||||
let currentVersion: TypeScriptVersion
|
let currentVersion: TypeScriptVersion
|
||||||
console.log('===========')
|
|
||||||
console.log(this.tscPathVim)
|
|
||||||
if (this.tscPathVim) currentVersion = this.versionProvider.getVersionFromTscPath(this.tscPathVim)
|
if (this.tscPathVim) currentVersion = this.versionProvider.getVersionFromTscPath(this.tscPathVim)
|
||||||
if (!currentVersion && !ignoreLocalTsserver) currentVersion = this.versionProvider.getLocalVersion()
|
if (!currentVersion && !ignoreLocalTsserver) currentVersion = this.versionProvider.getLocalVersion()
|
||||||
if (!currentVersion || !fs.existsSync(currentVersion.tsServerPath)) {
|
if (!currentVersion || !fs.existsSync(currentVersion.tsServerPath)) {
|
||||||
|
|
Loading…
Reference in a new issue