Initial commit

Signed-off-by: Ilan Bigio <ilan@openai.com>
This commit is contained in:
Ilan Bigio
2025-04-16 12:56:08 -04:00
commit 59a180ddec
163 changed files with 30587 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// 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";