mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-09 17:51:46 +00:00
change plugin system
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
{
|
||||
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"lib": ["dom", "dom.iterable", "es2022"],
|
||||
@ -8,15 +9,17 @@
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"moduleResolution": "node",
|
||||
"baseUrl": "./src",
|
||||
"baseUrl": ".",
|
||||
"outDir": "./dist",
|
||||
"strict": true,
|
||||
"noImplicitAny": true,
|
||||
"strictFunctionTypes": true,
|
||||
"skipLibCheck": true
|
||||
"skipLibCheck": true,
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"@assets": ["./assets/*"]
|
||||
}
|
||||
},
|
||||
"exclude": ["./dist"],
|
||||
"paths": {
|
||||
"*": ["*.d.ts"]
|
||||
}
|
||||
"include": ["electron.vite.config.ts", "./src/**/*"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user