mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-06 20:10:12 +02:00
30 lines
574 B
JSON
30 lines
574 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": [
|
|
"electron.vite.config.*",
|
|
"vite.react-plugin.ts",
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/i18n/**/*",
|
|
"src/types/**/*",
|
|
"src/shared/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"types": ["electron-vite/node"],
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"/@/main/*": [
|
|
"src/main/*"
|
|
],
|
|
"/@/preload/*": [
|
|
"src/preload/*"
|
|
],
|
|
"/@/shared/*": [
|
|
"src/shared/*"
|
|
],
|
|
}
|
|
}
|
|
}
|