mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
21 lines
519 B
JSON
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"]
|
|
}
|