export interface ITsdenoConfig { compileTargets: ICompileTarget[]; } export interface ICompileTarget { name: string; entryPoint: string; outDir: string; target: string; permissions?: string[]; noCheck?: boolean; }