feat(cli): add npmextra-based compile target configuration for deno builds

This commit is contained in:
2026-03-15 15:28:17 +00:00
parent 0c86e0b43e
commit 3f483ccd9c
9 changed files with 153 additions and 58 deletions

12
ts/tsdeno.interfaces.ts Normal file
View 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;
}