create-electron-shadcn-app
Version:
Create Electron Forge apps with Vite, React, Tailwind and shadcn/ui only with one command.
20 lines (19 loc) • 383 B
JSON
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "ESNext",
"module": "commonjs",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"paths": {
"@/*": ["./src/*"]
}
}
}