mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
address cr feedback
This commit is contained in:
@@ -1073,7 +1073,7 @@ namespace ts.server {
|
||||
: new InferredProject(this, this.documentRegistry, this.compilerOptionsForInferredProjects);
|
||||
|
||||
if (root.scriptKind === ScriptKind.JS || root.scriptKind === ScriptKind.JSX) {
|
||||
project.isJsInferredProject = true;
|
||||
project.setAsJsInferredProject();
|
||||
}
|
||||
|
||||
project.addRoot(root);
|
||||
|
||||
@@ -713,14 +713,14 @@ namespace ts.server {
|
||||
})();
|
||||
|
||||
private _isJsInferredProject = false;
|
||||
set isJsInferredProject(newValue: boolean) {
|
||||
if (newValue && !this._isJsInferredProject) {
|
||||
this.setCompilerOptions(this.getCompilerOptions());
|
||||
}
|
||||
this._isJsInferredProject = newValue;
|
||||
|
||||
setAsJsInferredProject() {
|
||||
this._isJsInferredProject = true;
|
||||
this.setCompilerOptions();
|
||||
}
|
||||
|
||||
setCompilerOptions(newOptions: CompilerOptions) {
|
||||
setCompilerOptions(newOptions?: CompilerOptions) {
|
||||
newOptions = newOptions ? newOptions : this.getCompilerOptions();
|
||||
if (!newOptions) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user