Home
last modified time | relevance | path

Searched refs:nodeCoreModules (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/src/services/codefixes/
DfixCannotFindModule.ts56 ? (JsTyping.nodeCoreModules.has(packageName) ? "@types/node" : undefined)
/third_party/typescript/src/jsTyping/
DjsTyping.ts85 export const nodeCoreModules = new Set(nodeCoreModuleList); constant
88 return nodeCoreModules.has(moduleName) ? "node" : moduleName;
/third_party/typescript/src/services/
Dutilities.ts3166 if (isSourceFileJS(fromFile) && JsTyping.nodeCoreModules.has(moduleSpecifier)) {
3219 return some(sourceFile.imports, ({ text }) => JsTyping.nodeCoreModules.has(text));
3400 if (JsTyping.nodeCoreModules.has(node.text)) {
Dcompletions.ts2936 …if (JsTyping.nodeCoreModules.has(moduleName) && startsWith(moduleName, "node:") !== shouldUseUriSt…
/third_party/typescript/lib/
DtypingsInstaller.js131353 JsTyping.nodeCoreModules = new ts.Set(JsTyping.nodeCoreModuleList);
131355 return JsTyping.nodeCoreModules.has(moduleName) ? "node" : moduleName;