mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
7 lines
291 B
TypeScript
7 lines
291 B
TypeScript
import { TypescriptParser } from 'typescript-parser';
|
|
|
|
(async () => {
|
|
const parser = new TypescriptParser();
|
|
return JSON.stringify(await parser.parseFiles(["src/gitpod-service.ts", "src/protocol.ts", "src/workspace-instance.ts"], ".."));
|
|
})().then(console.log).catch(console.error);
|