UNPKG

274 BTypeScriptView Raw
1interface TypeScriptConfigOverwrite {
2 extends?: string;
3 compilerOptions?: any;
4 include?: string[];
5 exclude?: string[];
6 files?: string[];
7 references?: {
8 path: string;
9 prepend?: boolean;
10 }[];
11}
12export { TypeScriptConfigOverwrite };