- Tauri v2 with React 19 + TypeScript + Vite 7 - Tauri plugins: fs, dialog, shell (registered in lib.rs) - Filesystem permissions scoped to $APPDATA/openpylon/** - Tailwind CSS v4 via @tailwindcss/vite - shadcn/ui initialized with 12 components - All app dependencies: Zustand, zundo, dnd-kit, Framer Motion, Zod, ulid, date-fns, react-markdown, remark-gfm - Path alias @/* configured in tsconfig + vite
32 lines
689 B
JSON
32 lines
689 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Alias */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|