Complete rewrite using modern web technologies: - Electron for cross-platform desktop app - TypeScript for type-safe code - Modern UI with multiple themes (Twitch, Discord, YouTube, Apple) Features: - VOD browsing and download with Streamlink - Clip downloader - Download queue with persistence - Settings management - Auto-update support Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
387 B
JSON
17 lines
387 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "commonjs",
|
|
"lib": ["ES2022", "DOM"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "release"]
|
|
}
|