mirror of
https://github.com/stablyai/orca
synced 2026-04-21 14:17:16 +00:00
* chore: clean up repo root for faster README visibility - Delete unused images (debug_orca.png, orca_3d.jpg, screenshot.png) - Delete stale design docs from docs/ - Move tsconfig sub-configs, electron-builder config, and vitest config to config/ - Move file-drag.gif to docs/assets/ and design doc to docs/ - Update all path references in package.json, tsconfig.json, and moved configs * fix: remove stale worktree dialog callback dependency
19 lines
440 B
JSON
19 lines
440 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
"include": [
|
|
"../src/renderer/src/env.d.ts",
|
|
"../src/renderer/src/**/*",
|
|
"../src/renderer/src/**/*.tsx",
|
|
"../src/preload/*.d.ts",
|
|
"../src/shared/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "..",
|
|
"paths": {
|
|
"@renderer/*": ["src/renderer/src/*"],
|
|
"@/*": ["src/renderer/src/*"]
|
|
}
|
|
}
|
|
}
|