Skip to content

Commit

Permalink
Add more specific checks for being on TS 4.0.1
Browse files Browse the repository at this point in the history
Fixes #104456
  • Loading branch information
mjbvz committed Aug 11, 2020
1 parent b171549 commit b84660f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -18,7 +18,6 @@ import { ILogDirectoryProvider } from './logDirectoryProvider';
import { GetErrRoutingTsServer, ITypeScriptServer, ProcessBasedTsServer, SyntaxRoutingTsServer, TsServerDelegate, TsServerProcessFactory, TsServerProcessKind } from './server';
import { TypeScriptVersionManager } from './versionManager';
import { ITypeScriptVersionProvider, TypeScriptVersion } from './versionProvider';
import * as semver from 'semver';

const enum CompositeServerType {
/** Run a single server that handles all commands */
Expand Down Expand Up @@ -164,7 +163,7 @@ export class TypeScriptServerSpawner {
let tsServerLogFile: string | undefined;

if (kind === TsServerProcessKind.Syntax) {
if (semver.gte(API.v401rc.fullVersionString, apiVersion.fullVersionString)) {
if (apiVersion.gte(API.v401)) {
args.push('--serverMode', 'partialSemantic');
} else {
args.push('--syntaxOnly');
Expand Down
2 changes: 1 addition & 1 deletion extensions/typescript-language-features/src/utils/api.ts
Expand Up @@ -34,8 +34,8 @@ export default class API {
public static readonly v380 = API.fromSimpleString('3.8.0');
public static readonly v381 = API.fromSimpleString('3.8.1');
public static readonly v390 = API.fromSimpleString('3.9.0');
public static readonly v401rc = API.fromSimpleString('4.0.1-rc');
public static readonly v400 = API.fromSimpleString('4.0.0');
public static readonly v401 = API.fromSimpleString('4.0.1');

public static fromVersionString(versionString: string): API {
let version = semver.valid(versionString);
Expand Down

0 comments on commit b84660f

Please sign in to comment.