From c6a5897337cae79ec2c499ee62a7cbe72bbcd3b7 Mon Sep 17 00:00:00 2001 From: xingyy <64720302+Concur-max@users.noreply.github.com> Date: Tue, 11 Mar 2025 11:54:51 +0800 Subject: [PATCH] 1212 --- app/stores/live/index.js | 1 + tsconfig.json | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) 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/**/*"] }