PATH:
opt
/
bitninja-threat-hunting
/
node_modules
/
tsconfig-paths
/
lib
/** * Typing for the parts of tsconfig that we care about */ export interface Tsconfig { extends?: string; compilerOptions?: { baseUrl?: string; paths?: { [key: string]: Array<string>; }; strict?: boolean; }; } export interface TsConfigLoaderResult { tsConfigPath: string | undefined; baseUrl: string | undefined; paths: { [key: string]: Array<string>; } | undefined; } export interface TsConfigLoaderParams { getEnv: (key: string) => string | undefined; cwd: string; loadSync?(cwd: string, filename?: string, baseUrl?: string): TsConfigLoaderResult; } export declare function tsConfigLoader({ getEnv, cwd, loadSync, }: TsConfigLoaderParams): TsConfigLoaderResult; export declare function walkForTsConfig(directory: string, readdirSync?: (path: string) => string[]): string | undefined; export declare function loadTsconfig(configFilePath: string, existsSync?: (path: string) => boolean, readFileSync?: (filename: string) => string): Tsconfig | undefined;
[-] register.js.map
[edit]
[-] config-loader.d.ts
[edit]
[-] filesystem.js.map
[edit]
[-] match-path-sync.js.map
[edit]
[-] match-path-async.js
[edit]
[-] index.js.map
[edit]
[+]
..
[-] config-loader.js.map
[edit]
[-] filesystem.js
[edit]
[-] index.d.ts
[edit]
[-] tsconfig-loader.js
[edit]
[-] mapping-entry.js
[edit]
[-] filesystem.d.ts
[edit]
[-] config-loader.js
[edit]
[-] match-path-sync.js
[edit]
[-] tsconfig-loader.js.map
[edit]
[-] register.d.ts
[edit]
[-] tsconfig-loader.d.ts
[edit]
[-] mapping-entry.js.map
[edit]
[-] index.js
[edit]
[-] match-path-async.d.ts
[edit]
[-] try-path.js.map
[edit]
[-] mapping-entry.d.ts
[edit]
[-] match-path-async.js.map
[edit]
[-] register.js
[edit]
[+]
__tests__
[-] try-path.d.ts
[edit]
[-] try-path.js
[edit]
[-] match-path-sync.d.ts
[edit]