Files
lobehub/apps/desktop/tsconfig.json
YuTengjing 44776b40bc 👷 build: nodejs 24 (#10003)
* build: upgrade node 24

* build: run pnpm update

* fix: tsgo not support baseUrl
2025-11-03 12:56:15 +08:00

21 lines
519 B
JSON

{
"compilerOptions": {
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"target": "ESNext",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"paths": {
"@/*": ["src/main/*"],
"~common/*": ["src/common/*"]
}
},
"include": ["src/main/**/*", "src/preload/**/*", "electron-builder.js"]
}