MCPcopy Index your code
hub / github.com/nodejs/node / isIgnoredPath

Function isIgnoredPath

test/fixtures/snapshot/typescript.js:6710–6713  ·  view source on GitHub ↗
(path, options)

Source from the content-addressed store, hash-verified

6708 }
6709 }
6710 function isIgnoredPath(path, options) {
6711 return ts.some(ts.ignoredPaths, function (searchPath) { return isInPath(path, searchPath); }) ||
6712 isIgnoredByWatchOptions(path, options, useCaseSensitiveFileNames, getCurrentDirectory);
6713 }
6714 function isInPath(path, searchPath) {
6715 if (ts.stringContains(path, searchPath))
6716 return true;

Callers 2

createDirectoryWatcherFunction · 0.85
updateChildWatchesFunction · 0.85

Calls 3

isInPathFunction · 0.85
isIgnoredByWatchOptionsFunction · 0.85
someMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…