fork(fix): Clone AMLL 并修复 BUG

- 将AMLL Clone到本以地进行修复和优化(emm虽然这很不优雅但是暂时无时间做子模块和Fork)
- 修复在当前播放歌词行不可见的视口Seek会出现滚动偏移的问题
This commit is contained in:
lqtmcstudio
2026-06-07 00:02:14 +08:00
parent 783d2c3dee
commit 72f4510dc8
458 changed files with 86075 additions and 1665 deletions

View File

@@ -4,12 +4,32 @@
"src/renderer/src/env.d.ts",
"src/renderer/src/**/*",
"src/renderer/src/**/*.vue",
"src/preload/*.d.ts"
"src/preload/*.d.ts",
"amll-local/packages/core/src/**/*",
"amll-local/packages/lyric/src/**/*",
"amll-local/packages/ttml/src/**/*",
"amll-local/packages/vue/src/**/*"
],
"compilerOptions": {
"composite": true,
"allowImportingTsExtensions": true,
"baseUrl": ".",
"paths": {
"@applemusic-like-lyrics/core": [
"amll-local/packages/core/src/index.ts"
],
"@applemusic-like-lyrics/core/style.css": [
"amll-local/packages/core/src/styles/index.css"
],
"@applemusic-like-lyrics/lyric": [
"amll-local/packages/lyric/src/index.ts"
],
"@applemusic-like-lyrics/ttml": [
"amll-local/packages/ttml/src/index.ts"
],
"@applemusic-like-lyrics/vue": [
"amll-local/packages/vue/src/index.ts"
],
"@renderer/*": [
"src/renderer/src/*"
]