forked from jsnbuchanan/crowd-funder-for-time-pwa
- Enhance electron build configuration with proper asset handling - Add comprehensive logging and error tracking - Implement CSP headers for security - Fix module exports for logger compatibility - Update TypeScript and Vite configs for better build support - Improve development workflow with better dev tools integration
26 lines
569 B
JSON
26 lines
569 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2020",
|
|
"outDir": "dist-electron",
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/electron/**/*.ts",
|
|
"src/utils/**/*.ts",
|
|
"src/constants/**/*.ts"
|
|
]
|
|
} |