Files
llmx/codex-cli/src/utils/auto-approval-mode.js
Ilan Bigio 59a180ddec Initial commit
Signed-off-by: Ilan Bigio <ilan@openai.com>
2025-04-16 12:56:08 -04:00

10 lines
557 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// This tiny shim exists solely so that development tooling such as `ts-node`
// (which executes the *source* files directly) can resolve the existing
// `./auto-approval-mode.js` import specifier used throughout the codebase.
//
// In the emitted JavaScript (built via `tsc --module nodenext`) the compiler
// rewrites the path to point at the generated `.js` file automatically, so
// having this shim in the source tree is completely transparent for
// production builds.
export { AutoApprovalMode, FullAutoErrorMode } from "./auto-approval-mode.ts";