/** * native-bootstrap.ts * * Sets NAPI_RS_NATIVE_LIBRARY_PATH before any module imports @ast-grep/napi. * * npm cli#4828 prevents platform-specific optionalDependencies from installing * on stock npm. Our mitigation: we ship bundled .node files for all supported * platforms in dist/native/. This module detects the current platform and points * the @ast-grep/napi loader at the correct bundled binary. * * This file MUST be the FIRST import in every entry point (cli.ts, mcp.ts). * It imports only Node.js built-ins — nothing that could pull in @ast-grep/napi. */ export {}; //# sourceMappingURL=native-bootstrap.d.ts.map