Add exec wrapper

This commit is contained in:
pakrym-oai
2025-09-25 17:39:58 -07:00
parent 67aab04c66
commit 58f0fa50ab
8 changed files with 1863 additions and 2 deletions

20
codex-cli/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"]
}