@typed/content-hash
Version:
Content hash a directory of HTML/JS/CSS files and other static assets
17 lines • 674 B
TypeScript
import { Option } from 'fp-ts/Option';
import { CompilerOptions } from 'typescript';
export declare type TsConfig = {
readonly compilerOptions: CompilerOptions;
readonly configPath: string;
readonly extends?: string | string[];
readonly files?: string[];
readonly include?: string[];
readonly exclude?: string[];
};
export declare type FindTsConfigOptions = {
readonly directory: string;
readonly configFileName?: string;
};
export declare const DEFAULT_TSCONFIG_FILENAME = "tsconfig.json";
export declare function findTsConfig({ directory, configFileName, }: FindTsConfigOptions): Option<TsConfig>;
//# sourceMappingURL=findTsConfig.d.ts.map