From ebec1a1073f9cc5b69e125d5b284669545ea3d9f Mon Sep 17 00:00:00 2001 From: haoyuren <13851610112@163.com> Date: Wed, 11 Mar 2026 18:16:45 -0500 Subject: Initial commit: ClaudeTeX - LaTeX editor with Overleaf sync Features: - Electron + React + TypeScript app with Cosmic Latte theme - CodeMirror 6 editor with LaTeX syntax highlighting - PDF preview with pdf.js, zoom controls, SyncTeX double-click jump - File tree with context menu (new/rename/delete/reveal) - Overleaf Git clone with token auth + macOS Keychain storage - Git pull/push sync for Overleaf projects - Embedded terminal (xterm.js + node-pty) with Claude CLI integration - LaTeX compilation via latexmk with auto package install detection - Structured compile log (errors/warnings) with click-to-navigate - Main document setting (auto-detect or right-click to set) - Custom modal system (input/confirm/alert) - Resizable panel layout (file tree | editor | PDF + terminal) Co-Authored-By: Claude Opus 4.6 --- tsconfig.web.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tsconfig.web.json (limited to 'tsconfig.web.json') diff --git a/tsconfig.web.json b/tsconfig.web.json new file mode 100644 index 0000000..33e0bf2 --- /dev/null +++ b/tsconfig.web.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "jsx": "react-jsx", + "outDir": "./out", + "rootDir": "./src/renderer/src", + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "ESNext", + "baseUrl": ".", + "paths": { + "@/*": ["src/renderer/src/*"] + } + }, + "include": ["src/renderer/src/**/*"] +} -- cgit v1.2.3