mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-30 01:04:49 -05:00
Merge pull request #2450 from Microsoft/tsconfigServer
Add support to TypeScript server for tsconfig.json files.
This commit is contained in:
@@ -1475,6 +1475,7 @@ declare module "typescript" {
|
||||
declare module "typescript" {
|
||||
/** The version of the TypeScript compiler release */
|
||||
let version: string;
|
||||
function findConfigFile(searchPath: string): string;
|
||||
function createCompilerHost(options: CompilerOptions, setParentNodes?: boolean): CompilerHost;
|
||||
function getPreEmitDiagnostics(program: Program): Diagnostic[];
|
||||
function flattenDiagnosticMessageText(messageText: string | DiagnosticMessageChain, newLine: string): string;
|
||||
|
||||
@@ -4736,6 +4736,10 @@ declare module "typescript" {
|
||||
|
||||
interface GenericType extends InterfaceType, TypeReference {
|
||||
|
||||
>GenericType : GenericType
|
||||
>InterfaceType : InterfaceType
|
||||
>TypeReference : TypeReference
|
||||
|
||||
instantiations: Map<TypeReference>;
|
||||
|
||||
>instantiations : Map<TypeReference>
|
||||
|
||||
@@ -1506,6 +1506,7 @@ declare module "typescript" {
|
||||
declare module "typescript" {
|
||||
/** The version of the TypeScript compiler release */
|
||||
let version: string;
|
||||
function findConfigFile(searchPath: string): string;
|
||||
function createCompilerHost(options: CompilerOptions, setParentNodes?: boolean): CompilerHost;
|
||||
function getPreEmitDiagnostics(program: Program): Diagnostic[];
|
||||
function flattenDiagnosticMessageText(messageText: string | DiagnosticMessageChain, newLine: string): string;
|
||||
|
||||
@@ -4882,6 +4882,10 @@ declare module "typescript" {
|
||||
|
||||
interface GenericType extends InterfaceType, TypeReference {
|
||||
|
||||
>GenericType : GenericType
|
||||
>InterfaceType : InterfaceType
|
||||
>TypeReference : TypeReference
|
||||
|
||||
instantiations: Map<TypeReference>;
|
||||
|
||||
>instantiations : Map<TypeReference>
|
||||
|
||||
@@ -1507,6 +1507,7 @@ declare module "typescript" {
|
||||
declare module "typescript" {
|
||||
/** The version of the TypeScript compiler release */
|
||||
let version: string;
|
||||
function findConfigFile(searchPath: string): string;
|
||||
function createCompilerHost(options: CompilerOptions, setParentNodes?: boolean): CompilerHost;
|
||||
function getPreEmitDiagnostics(program: Program): Diagnostic[];
|
||||
function flattenDiagnosticMessageText(messageText: string | DiagnosticMessageChain, newLine: string): string;
|
||||
|
||||
@@ -4832,6 +4832,10 @@ declare module "typescript" {
|
||||
|
||||
interface GenericType extends InterfaceType, TypeReference {
|
||||
|
||||
>GenericType : GenericType
|
||||
>InterfaceType : InterfaceType
|
||||
>TypeReference : TypeReference
|
||||
|
||||
instantiations: Map<TypeReference>;
|
||||
|
||||
>instantiations : Map<TypeReference>
|
||||
|
||||
@@ -1544,6 +1544,7 @@ declare module "typescript" {
|
||||
declare module "typescript" {
|
||||
/** The version of the TypeScript compiler release */
|
||||
let version: string;
|
||||
function findConfigFile(searchPath: string): string;
|
||||
function createCompilerHost(options: CompilerOptions, setParentNodes?: boolean): CompilerHost;
|
||||
function getPreEmitDiagnostics(program: Program): Diagnostic[];
|
||||
function flattenDiagnosticMessageText(messageText: string | DiagnosticMessageChain, newLine: string): string;
|
||||
|
||||
@@ -5005,6 +5005,10 @@ declare module "typescript" {
|
||||
|
||||
interface GenericType extends InterfaceType, TypeReference {
|
||||
|
||||
>GenericType : GenericType
|
||||
>InterfaceType : InterfaceType
|
||||
>TypeReference : TypeReference
|
||||
|
||||
instantiations: Map<TypeReference>;
|
||||
|
||||
>instantiations : Map<TypeReference>
|
||||
|
||||
Reference in New Issue
Block a user