mirror of
https://github.com/stablyai/orca
synced 2026-04-21 14:17:16 +00:00
Swap out eslint + 6 plugins for oxlint and prettier for oxfmt (oxc toolchain). Set up husky + lint-staged to run linter and formatter on pre-commit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
364 B
JSON
17 lines
364 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"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@renderer/*": ["src/renderer/src/*"]
|
|
}
|
|
}
|
|
}
|