Hello there! Thanks for the awesome packages. The @pgsql/parser readme shows this usage:
import Parser from '@pgsql/parser';
// or: import { Parser } from '@pgsql/parser';
// Create parser with default version (17)
const parser = new Parser();
However, when using the default import syntax, a TypeError results: TypeError: import_parser.default is not a constructor. Using a named import import { Parser } ... works fine. Should the default export be supported? I'm happy to update the readme if not.