UNPKG

@typed/content-hash

Version:

Content hash a directory of HTML/JS/CSS files and other static assets

11 lines 557 B
import { Option } from 'fp-ts/Option'; import { CompilerOptions } from 'typescript'; export declare type TsConfigPathsResolver = { readonly resolvePath: (moduleSpecifier: string) => Option<string>; readonly isInPaths: (moduleSpecifier: string) => boolean; }; export declare function createResolveTsConfigPaths({ compilerOptions, }: CreateResolveTsConfigPathsOptions): TsConfigPathsResolver; export declare type CreateResolveTsConfigPathsOptions = { readonly compilerOptions: CompilerOptions; }; //# sourceMappingURL=resolveTsConfigPaths.d.ts.map