Files
bip-sda/tsconfig.web.json
Misaka_Company f43c3d0a25 Initial commit: bip-sda project scaffold
Electron + TypeScript project initialized with electron-vite,
electron-builder, ESLint, and Prettier configuration.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-12 13:22:51 +08:00

20 lines
380 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/*"
]
}
}
}