mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-09 17:51:46 +00:00
* feat: electron-vite PoC * fix: fix preload path * remove rollup deps and config * fix: debug mode * fix: build mode, asset path * fix: remove unused dependencies * feat: use `executeJavaScriptInIsolatedWorld` instead of `executeJavaScript` * feat: enable `minify` * fix(actions): update task name * fix: fix dev mode check * fix: remove unused variable
23 lines
514 B
JSON
23 lines
514 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "es2022"],
|
|
"module": "CommonJS",
|
|
"types": ["electron-vite/node"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./src",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["./dist"],
|
|
"paths": {
|
|
"*": ["*.d.ts"]
|
|
}
|
|
}
|