feat(cli): add npmextra-based compile target configuration for deno builds
This commit is contained in:
12
ts/tsdeno.interfaces.ts
Normal file
12
ts/tsdeno.interfaces.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface ITsdenoConfig {
|
||||
compileTargets: ICompileTarget[];
|
||||
}
|
||||
|
||||
export interface ICompileTarget {
|
||||
name: string;
|
||||
entryPoint: string;
|
||||
outDir: string;
|
||||
target: string;
|
||||
permissions?: string[];
|
||||
noCheck?: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user