diff options
| author | Yuren Hao <97327730+YurenHao0426@users.noreply.github.com> | 2026-09-13 11:07:18 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-13 11:07:18 +0700 |
| commit | c78a5ef589cacb5d7bdc7586b0cc270aded4b5fc (patch) | |
| tree | 69877995c0ecad3eb7266b1bb282c11a6f16dcdf /tsconfig.cli.json | |
| parent | 34f22876ab9e15e9f14300a8c21cd7109800d1ab (diff) | |
| parent | 1e81ba361eed444442fa98b0770e7ed78dae864b (diff) | |
Merge pull request #1 from YurenHao0426/agent-cli
Headless CLI mode for agents
Diffstat (limited to 'tsconfig.cli.json')
| -rw-r--r-- | tsconfig.cli.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.cli.json b/tsconfig.cli.json new file mode 100644 index 0000000..4efc99c --- /dev/null +++ b/tsconfig.cli.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "outDir": "./out/cli", + "rootDir": "./src", + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "ESNext", + "types": ["node"], + "declaration": true, + "declarationDir": "./out/cli/types" + }, + "include": [ + "src/cli/**/*", + "src/main/overleafProtocol.ts" + ] +} |
