MCPcopy
hub / github.com/meteor/meteor / File

Interface File

tools/isobuild/import-scanner.ts:330–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

328}
329
330interface File extends RawFile {
331 type: string;
332 sourcePath: string;
333 targetPath?: string;
334 servePath?: string;
335 absModuleId?: string;
336 deps?: Record<string, ImportInfo>;
337 lazy: boolean;
338 bare?: boolean;
339 // TODO Improve the sourceMap type.
340 sourceMap?: Record<string, any>;
341 implicit?: boolean;
342 imported: string | boolean;
343 [fakeSymbol]?: boolean;
344 reportPendingErrors?: () => number;
345 hasErrors?: boolean;
346 missingModules?: Record<string, ImportInfo>;
347 alias?: FileAlias;
348}
349
350type FileAlias = {
351 path: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…