Playground highlights and shows info/errors from build

This commit is contained in:
2024-11-05 13:44:16 -08:00
parent f92d287909
commit 182876d16b
15 changed files with 305 additions and 145 deletions

View File

@@ -1,13 +1,15 @@
export {}
declare module "*.css";
export {};
declare global {
interface Process {
platform: string;
stdout: {
write(s: string): void
},
argv: string[]
write(s: string): void;
};
argv: string[];
exit(_: number): void;
}
let files : Record<string,string>
let process : Process
let __mainExpression_0 : () => unknown
let files: Record<string, string>;
let process: Process;
let newtMain: () => unknown;
}