Files
lobe-chat/apps/desktop/tsconfig.json
T

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"
]
}