mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
35 lines
711 B
JSON
35 lines
711 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": false,
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"composite": true,
|
|
"experimentalDecorators": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/main/*"
|
|
],
|
|
"~common/*": [
|
|
"./src/common/*"
|
|
],
|
|
"*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/common/**/*",
|
|
"electron-builder.js"
|
|
]
|
|
} |