ChatGPT thinks, Codex works: a loopback bridge exposes the current workspace to ChatGPT through 8 read-only MCP tools over Streamable HTTP, protected by OAuth 2.1 (PKCE, DCR, refresh rotation) with a one-time pairing code for zero-input authorization, published via a Cloudflare Quick Tunnel. Includes the c2c CLI (setup/start/doctor/pair/unpair/record), the Codex Skill, the C2C agent protocol docs, and 76 unit/integration tests. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
439 B
JSON
19 lines
439 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "tests"]
|
|
}
|