Type Alias LooseEstreeProgram

LooseEstreeProgram: {
    body: unknown[];
    sourceType: "module" | "script";
    type: "Program";
}

A parsed JavaScript program which should adhere to estree.Program. Can be generated by:

  • acorn.parse(code, {ecmaVersion: 2024})
  • @babel/parser with estree plugin