/** * Suppresses the ExperimentalWarning for node:sqlite. * * Node.js writes ExperimentalWarnings to stderr via `process.emitWarning` * before emitting the 'warning' event. Monkeypatching `process.emitWarning` * at the point of module load is the only JS-level suppression that works * for programmatic consumers who do not use the `cleo` CLI wrapper. * * This module is imported at the top of every main entry point to ensure * suppression is active before `node:sqlite` or `drizzle-orm/node-sqlite` * are loaded. * * @package @cleocode/core */ export {}; //# sourceMappingURL=suppress-sqlite-warning.d.ts.map