mirror of
https://github.com/delibae/claude-prism.git
synced 2026-09-10 22:41:09 +00:00
- Updated package.json to include new filters for development scripts and added built dependencies for pnpm. - Introduced a new desktop application with essential files including index.html, package.json, and configuration files (postcss, tsconfig, vite). - Added core components for the desktop app, including App, ProjectPicker, AssistantPanel, and UI elements like Button, Input, and DropdownMenu. - Integrated Tauri plugins for file handling and dialog interactions. - Enhanced Turbo configuration to include additional output paths for builds. - Updated pnpm-lock.yaml to reflect new dependencies and versions for the desktop application.
23 lines
558 B
JSON
23 lines
558 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|