mirror of
https://github.com/ValueCell-ai/ClawX.git
synced 2026-08-14 00:48:10 +00:00
33 lines
729 B
JSON
33 lines
729 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": false,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": false,
|
|
"outDir": "dist-electron",
|
|
"declaration": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Paths */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@electron/*": ["electron/*"],
|
|
"@shared/*": ["shared/*"]
|
|
}
|
|
},
|
|
"include": ["electron", "shared", "shared/**/*.json", "vite.config.ts"]
|
|
}
|