mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-24 21:48:36 +02:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
638 B
JSON
36 lines
638 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"electron",
|
|
"bun-types"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@main/*": [
|
|
"src/main/*"
|
|
],
|
|
"@renderer/*": [
|
|
"src/renderer/*"
|
|
],
|
|
"@shared/*": [
|
|
"src/shared/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"electron.vite.config.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"tests/**/*.ts"
|
|
]
|
|
}
|