2024-09-26 11:57:23 +08:00
|
|
|
{
|
|
|
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
|
|
|
"include": [
|
|
|
|
|
"src/env.d.ts",
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"src/**/*.vue",
|
|
|
|
|
"electron/main/index.d.ts",
|
2025-08-20 11:35:07 +08:00
|
|
|
"electron/preload/index.d.ts",
|
|
|
|
|
"dist/lastfm.ts"
|
|
|
|
|
],
|
2024-09-26 11:57:23 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"composite": true,
|
2025-08-20 11:35:07 +08:00
|
|
|
"esModuleInterop": true,
|
2025-09-15 12:06:50 +08:00
|
|
|
"moduleResolution": "bundler",
|
2024-09-26 11:57:23 +08:00
|
|
|
"maxNodeModuleJsDepth": 2,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
},
|
2025-10-29 18:29:58 +08:00
|
|
|
"types": ["node", "electron", "electron-vite/node", "./auto-imports.d.ts", "./components.d.ts"],
|
2025-10-13 09:43:34 +08:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"target": "es2022"
|
2024-09-26 11:57:23 +08:00
|
|
|
}
|
|
|
|
|
}
|