Adds support for inferred project isolation by projectRootPath

This commit is contained in:
Ron Buckton
2017-08-03 16:03:24 -07:00
parent c9698072d4
commit fa7f3e85fe
10 changed files with 278 additions and 67 deletions

View File

@@ -1304,6 +1304,13 @@ namespace ts.server.protocol {
* Compiler options to be used with inferred projects.
*/
options: ExternalProjectCompilerOptions;
/**
* Specifies the project root path used to scope commpiler options.
* This message is ignored if this property has been specified and the server is not
* configured to create an inferred project per project root.
*/
projectRootPath?: string;
}
/**