UNPKG

tslint-folders

Version:

Custom TSLint rules for checking imports between packages and their folders, and generating relevant diagrams.

12 lines (11 loc) 267 B
export interface TsConfigPaths { [glob: string]: string[]; } export interface TsConfig { baseUrl: string; paths: TsConfigPaths; include: string[]; } export declare namespace TsConfigParser { function parseConfigNear(thisPath: string): TsConfig; }