Files
aryx/tsconfig.json
T

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"
]
}