13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
export interface ITsdenoConfig {
|
|
compileTargets: ICompileTarget[];
|
|
}
|
|
|
|
export interface ICompileTarget {
|
|
name: string;
|
|
entryPoint: string;
|
|
outDir: string;
|
|
target: string;
|
|
permissions?: string[];
|
|
noCheck?: boolean;
|
|
}
|