1 Commits

Author SHA1 Message Date
f22e91ae78 chore(deps): update deps 2026-02-10 00:41:39 +08:00
5 changed files with 8 additions and 13 deletions

View File

@@ -73,7 +73,7 @@ export const useLoginState = defineStore(
persist: {
key: 'xsh_assistant_persisted_state',
storage: piniaPluginPersistedstate.localStorage(),
pick: ['is_logged_in', 'token', 'user'],
paths: ['is_logged_in', 'token', 'user'],
},
}
)

View File

@@ -33,7 +33,7 @@ export const useTourState = defineStore(
persist: {
key: 'xsh_assistant_tour_state',
storage: piniaPluginPersistedstate.localStorage(),
pick: ['tourState'],
paths: ['tourState'],
},
}
)

View File

@@ -1,18 +1,13 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"files": [],
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
"path": "./tsconfig.node.json"
}
]
}