diff --git a/app/stores/live/index.js b/app/stores/live/index.js index c9b1b52..6ecab95 100644 --- a/app/stores/live/index.js +++ b/app/stores/live/index.js @@ -248,6 +248,7 @@ export const liveStore = createGlobalState(() => { } } return{ + decryptUtils, fullLive, isMinWindow, lastSnapshot, diff --git a/tsconfig.json b/tsconfig.json index a746f2a..0fbd00b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,11 @@ { // https://nuxt.com/docs/guide/concepts/typescript - "extends": "./.nuxt/tsconfig.json" + "extends": "./.nuxt/tsconfig.json", + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["app/*"] // 确保这里的路径别名配置和你的项目配置一致 + } + }, + "include": ["app/**/*"] }