mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
unresolved imports of empty array and undefined are same
This commit is contained in:
@@ -362,9 +362,9 @@ function compilerOptionsChanged(opt1: CompilerOptions, opt2: CompilerOptions): b
|
||||
}
|
||||
|
||||
function unresolvedImportsChanged(imports1: SortedReadonlyArray<string> | undefined, imports2: SortedReadonlyArray<string> | undefined): boolean {
|
||||
if (imports1 === imports2) {
|
||||
return false;
|
||||
}
|
||||
if (imports1 === imports2) return false;
|
||||
// undefined and 0 length array are same
|
||||
if (!imports1?.length === !imports2?.length) return false;
|
||||
return !arrayIsEqualTo(imports1, imports2);
|
||||
}
|
||||
const disabledTypeAcquisition: TypeAcquisition = {};
|
||||
@@ -1518,10 +1518,14 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
|
||||
this.typingsCache = {
|
||||
compilerOptions: this.getCompilationSettings(),
|
||||
typeAcquisition,
|
||||
unresolvedImports: this.lastCachedUnresolvedImportsList,
|
||||
unresolvedImports: this.lastCachedUnresolvedImportsList?.length ? this.lastCachedUnresolvedImportsList : undefined,
|
||||
};
|
||||
// something has been changed, issue a request to update typings
|
||||
this.projectService.typingsInstaller.enqueueInstallTypingsRequest(this, typeAcquisition, this.lastCachedUnresolvedImportsList);
|
||||
this.projectService.typingsInstaller.enqueueInstallTypingsRequest(
|
||||
this,
|
||||
typeAcquisition,
|
||||
this.typingsCache.unresolvedImports,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
-4
@@ -186,14 +186,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/node_modules/@angular/forms",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -235,7 +233,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -258,7 +255,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -435,14 +435,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/node_modules/@angular/forms",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -484,7 +482,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -507,7 +504,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -183,14 +183,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/node_modules/@angular/forms",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: ["@angular/core"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -237,7 +235,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -260,7 +257,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -374,13 +374,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -420,7 +418,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -444,7 +441,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -299,13 +299,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "e:/solution/myproject/src",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -345,7 +343,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -369,7 +366,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -190,7 +188,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -145,13 +145,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -191,7 +189,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -215,7 +212,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -427,13 +427,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -473,7 +471,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -497,7 +494,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -379,13 +379,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -424,7 +422,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -447,7 +444,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -142,13 +142,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -218,7 +215,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -122,13 +122,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -174,7 +172,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -198,7 +195,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -317,12 +313,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -368,7 +362,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -392,7 +385,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -126,13 +126,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -178,7 +176,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -202,7 +199,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -143,13 +143,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -195,7 +193,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -122,13 +122,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -167,7 +165,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -190,7 +187,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -119,13 +119,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -164,7 +162,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -187,7 +184,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -528,12 +524,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -564,7 +558,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -587,7 +580,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -368,13 +368,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -415,7 +413,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -440,7 +437,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -290,13 +290,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/someuser/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -339,7 +337,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -360,7 +357,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -413,13 +413,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/someuser/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -462,7 +460,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -483,7 +480,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -354,13 +354,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -400,7 +398,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -424,7 +421,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -578,12 +574,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -624,7 +618,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -649,7 +642,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -270,13 +270,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -312,7 +310,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -332,7 +329,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -298,13 +298,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/workspace/projects",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -344,7 +342,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -368,7 +365,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-64
@@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -355,12 +351,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -391,7 +385,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -414,7 +407,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -519,12 +511,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -563,7 +553,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -586,7 +575,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -742,12 +730,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -786,7 +772,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -809,7 +794,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -1544,12 +1528,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -1580,7 +1562,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -1603,7 +1584,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -1846,12 +1826,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -1882,7 +1860,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -1905,7 +1882,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -2009,12 +1985,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -2053,7 +2027,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -2076,7 +2049,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -2230,12 +2202,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -2274,7 +2244,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -2297,7 +2266,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3059,12 +3027,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3095,7 +3061,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3118,7 +3083,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3370,12 +3334,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3406,7 +3368,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3429,7 +3390,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3533,12 +3493,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3577,7 +3535,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3600,7 +3557,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3754,12 +3710,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3798,7 +3752,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3821,7 +3774,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -4556,12 +4508,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -4592,7 +4542,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -4615,7 +4564,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -4858,12 +4806,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -4894,7 +4840,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -4917,7 +4862,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -5021,12 +4965,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -5065,7 +5007,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -5088,7 +5029,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -5242,12 +5182,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -5286,7 +5224,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -5309,7 +5246,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-64
@@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -359,12 +355,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -395,7 +389,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -418,7 +411,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -551,12 +543,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -595,7 +585,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -618,7 +607,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -780,12 +768,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -824,7 +810,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -847,7 +832,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -1594,12 +1578,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -1630,7 +1612,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -1653,7 +1634,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -1902,12 +1882,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/A",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -1946,7 +1924,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -1969,7 +1946,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -2116,12 +2092,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -2160,7 +2134,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -2183,7 +2156,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -2356,12 +2328,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -2400,7 +2370,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -2423,7 +2392,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3267,12 +3235,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3303,7 +3269,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3326,7 +3291,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3618,12 +3582,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3654,7 +3616,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3677,7 +3638,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -3809,12 +3769,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -3853,7 +3811,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -3876,7 +3833,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -4036,12 +3992,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -4080,7 +4034,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -4103,7 +4056,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -4850,12 +4802,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -4886,7 +4836,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -4909,7 +4858,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -5158,12 +5106,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/A",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -5202,7 +5148,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -5225,7 +5170,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -5375,12 +5319,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -5419,7 +5361,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -5442,7 +5383,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -5620,12 +5560,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -5664,7 +5602,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -5687,7 +5624,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-16
@@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -355,12 +351,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -391,7 +385,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -414,7 +407,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -519,12 +511,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -563,7 +553,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -586,7 +575,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -742,12 +730,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -786,7 +772,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -809,7 +794,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -134,13 +134,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -180,7 +178,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -204,7 +201,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-12
@@ -250,13 +250,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -296,7 +294,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -320,7 +317,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -532,12 +528,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -569,7 +563,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -593,7 +586,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -746,12 +738,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -791,7 +781,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -815,7 +804,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -188,7 +186,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -210,7 +207,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -418,7 +418,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -426,7 +425,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/myproject/node_modules; all files: ["/user/username/projects/myproject/node_modules/module3/package.json"]
|
||||
TI:: [hh:mm:ss:mss] Found package names: ["module3"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -470,7 +468,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -493,7 +490,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -162,13 +162,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -209,7 +207,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -234,7 +231,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -163,13 +163,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -210,7 +208,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -235,7 +232,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -228,13 +228,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -273,7 +271,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -296,7 +293,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -244,14 +244,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -327,7 +324,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -244,14 +244,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -327,7 +324,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -423,12 +419,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -464,7 +458,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -487,7 +480,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -231,14 +231,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -280,7 +278,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -303,7 +300,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -396,13 +392,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -445,7 +439,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -468,7 +461,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -231,14 +231,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -280,7 +278,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -303,7 +300,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -396,13 +392,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -445,7 +439,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -468,7 +461,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -130,13 +130,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -172,7 +170,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -192,7 +189,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -190,7 +188,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-16
@@ -143,13 +143,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -195,7 +193,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -342,12 +338,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -397,7 +391,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -421,7 +414,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -818,12 +810,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -865,7 +855,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -889,7 +878,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -934,12 +922,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/myproject",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -983,7 +969,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -1007,7 +992,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -305,13 +305,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/src",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -350,7 +348,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -373,7 +370,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -167,7 +165,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -187,7 +184,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -161,13 +161,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["duck-types"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -226,7 +224,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -248,7 +245,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -167,14 +167,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["blissfuljs"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from file names: ["blissfuljs"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -225,7 +223,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -247,7 +244,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -174,13 +174,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["kendo-ui","office"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -266,7 +264,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -289,7 +286,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -451,13 +451,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -497,7 +495,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -521,7 +518,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -741,12 +737,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -786,7 +780,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -810,7 +803,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -324,13 +324,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -370,7 +368,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -394,7 +391,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -365,12 +361,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -414,7 +408,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -434,7 +427,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -205,13 +205,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -250,7 +248,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -273,7 +270,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -171,7 +169,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -195,7 +192,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -225,13 +225,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -271,7 +269,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -297,7 +294,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -280,13 +280,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -328,7 +326,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -354,7 +351,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -212,13 +212,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -258,7 +256,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -284,7 +281,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -267,13 +267,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -315,7 +313,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -341,7 +338,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowJs": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -152,13 +152,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -203,7 +201,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -224,7 +221,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -149,13 +149,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -199,7 +197,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -166,13 +166,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -212,7 +210,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -236,7 +233,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -454,12 +450,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -490,7 +484,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -513,7 +506,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -729,12 +721,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -774,7 +764,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -798,7 +787,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -166,13 +166,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -214,7 +212,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -240,7 +237,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -161,13 +161,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -208,7 +206,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -233,7 +230,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -137,13 +137,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -183,7 +181,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -207,7 +204,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -190,13 +190,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -237,7 +235,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -262,7 +259,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -132,13 +132,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -178,7 +176,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -202,7 +199,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -124,13 +124,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -170,7 +168,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -194,7 +191,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -160,13 +160,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -208,7 +206,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -234,7 +231,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -128,13 +128,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -174,7 +172,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -198,7 +195,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -298,12 +294,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -343,7 +337,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -367,7 +360,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,13 +177,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -224,7 +222,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -249,7 +246,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -167,13 +167,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["hunter2","hunter3"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -224,7 +222,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -146,13 +146,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -192,7 +190,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -216,7 +213,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -565,7 +565,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -573,7 +572,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -615,7 +613,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -641,7 +638,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -622,14 +622,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -663,7 +661,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json
|
||||
@@ -691,7 +688,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -1211,14 +1207,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -1260,7 +1254,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -1286,7 +1279,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -292,7 +292,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -300,7 +299,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -342,7 +340,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -368,7 +365,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -917,14 +913,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -966,7 +960,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -992,7 +985,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -138,13 +138,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -180,7 +178,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -200,7 +197,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -880,14 +880,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -929,7 +927,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -955,7 +952,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -197,7 +197,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -205,7 +204,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -271,7 +268,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -865,14 +865,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/users/user/projects/project1",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -914,7 +912,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -940,7 +937,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -174,7 +174,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -182,7 +181,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/bower_components; all files: ["/user/username/projects/project/bower_components/jquery/bower.json"]
|
||||
TI:: [hh:mm:ss:mss] Found package names: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -380,7 +378,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json
|
||||
@@ -409,7 +406,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -498,14 +494,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/bower_components; all files: ["/user/username/projects/project/bower_components/jquery/bower.json"]
|
||||
TI:: [hh:mm:ss:mss] Found package names: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -542,7 +536,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -569,7 +562,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -196,14 +196,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -403,7 +401,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/tsconfig.json
|
||||
@@ -428,7 +425,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -512,13 +508,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -552,7 +546,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -575,7 +568,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -173,14 +173,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/bower.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -383,7 +381,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json
|
||||
@@ -412,7 +409,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -501,13 +497,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/bower.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -545,7 +539,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -572,7 +565,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -556,12 +556,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -589,7 +587,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json
|
||||
@@ -617,7 +614,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -212,13 +212,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -272,7 +269,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -231,13 +231,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -267,7 +265,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -295,7 +292,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -216,7 +216,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -225,7 +224,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/jquery/package.json"]
|
||||
TI:: [hh:mm:ss:mss] Found package names: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -469,7 +467,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json
|
||||
@@ -498,7 +495,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -594,7 +590,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -602,7 +597,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/jquery/package.json"]
|
||||
TI:: [hh:mm:ss:mss] Found package names: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -640,7 +634,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -667,7 +660,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -184,14 +184,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -335,7 +333,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -363,7 +360,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -451,13 +447,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -496,7 +490,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -522,7 +515,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -142,13 +142,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -303,7 +301,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj
|
||||
@@ -328,7 +325,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -189,13 +189,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project/a/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -239,7 +237,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -259,7 +256,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -203,7 +203,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -211,7 +210,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["lodash"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"]
|
||||
TI:: [hh:mm:ss:mss] Inferred 'react' typings due to presence of '.jsx' extension
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -394,7 +392,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj
|
||||
@@ -422,7 +419,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -519,14 +515,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"exclude": [],
|
||||
"enable": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["lodash"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"]
|
||||
TI:: [hh:mm:ss:mss] Inferred 'react' typings due to presence of '.jsx' extension
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -566,7 +560,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -593,7 +586,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -197,7 +195,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -220,7 +217,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"noEmitForJsFiles": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -238,7 +238,6 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"lodash"
|
||||
]
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
@@ -246,7 +245,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"]
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Typing for lodash is in exclude list, will be ignored.
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
@@ -456,7 +454,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj
|
||||
@@ -491,7 +488,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -604,14 +600,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"lodash"
|
||||
]
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/app",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"]
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Typing for lodash is in exclude list, will be ignored.
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
@@ -662,7 +656,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -696,7 +689,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts",
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -157,12 +157,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"enable": true,
|
||||
"disableFilenameBasedTypeAcquisition": true
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -201,7 +199,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -224,7 +221,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -148,14 +148,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -302,7 +300,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -330,7 +327,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -418,13 +414,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -463,7 +457,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -489,7 +482,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -452,12 +452,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -489,7 +487,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -515,7 +512,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-8
@@ -473,14 +473,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -512,7 +510,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -538,7 +535,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -673,14 +669,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -712,7 +706,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -736,7 +729,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -451,14 +451,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: []
|
||||
TI:: [hh:mm:ss:mss] Found package names: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -490,7 +488,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -516,7 +513,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -199,13 +199,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -271,7 +268,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"allowNonTsExtensions": true
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -139,14 +139,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["co } }"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -218,7 +215,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -290,13 +286,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -385,7 +379,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -413,7 +406,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -500,13 +492,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -543,7 +533,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -569,7 +558,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -205,14 +205,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -414,7 +412,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/tsconfig.json
|
||||
@@ -439,7 +436,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -524,13 +520,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -564,7 +558,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -587,7 +580,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -824,13 +816,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/project2",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project2/package.json' dependencies: ["commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
|
||||
@@ -184,14 +184,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/Vscode/Projects/bin",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -274,7 +271,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -143,14 +143,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
|
||||
@@ -163,14 +163,12 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -332,7 +329,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
@@ -420,13 +416,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/home/src/projects/project",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"]
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [
|
||||
@@ -463,7 +457,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -489,7 +482,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"typings": [
|
||||
"/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts"
|
||||
],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -199,13 +199,11 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/san2",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json'
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -248,7 +246,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] event:
|
||||
@@ -275,7 +272,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
-4
@@ -462,12 +462,10 @@ TI:: [hh:mm:ss:mss] Got install request
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"unresolvedImports": [],
|
||||
"projectRootPath": "/user/username/projects/a/b",
|
||||
"kind": "discover"
|
||||
}
|
||||
TI:: [hh:mm:ss:mss] Explicitly included types: []
|
||||
TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: []
|
||||
TI:: [hh:mm:ss:mss] Finished typings discovery:
|
||||
{
|
||||
"cachedTypingPaths": [],
|
||||
@@ -499,7 +497,6 @@ TI:: [hh:mm:ss:mss] Sending response:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*
|
||||
@@ -525,7 +522,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"maxNodeModuleJsDepth": 2
|
||||
},
|
||||
"typings": [],
|
||||
"unresolvedImports": [],
|
||||
"kind": "action::set"
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user