@coze-arch/cli 0.0.1-alpha.e9ff73 → 0.0.1-alpha.eaa612
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
- package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/nextjs/README.md +5 -0
- package/lib/__templates__/nextjs/_gitignore +0 -3
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +1 -2
- package/lib/__templates__/nextjs/package.json +1 -5
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1012 -12
- package/lib/__templates__/nextjs/scripts/build.sh +2 -2
- package/lib/__templates__/nextjs/scripts/dev.sh +3 -4
- package/lib/__templates__/nextjs/scripts/start.sh +3 -3
- package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
- package/lib/__templates__/nextjs/{server.ts → src/server.ts} +14 -14
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-app/README.md +5 -15
- package/lib/__templates__/nuxt-app/app/app.vue +1 -188
- package/lib/__templates__/nuxt-app/app/pages/index.vue +23 -0
- package/lib/__templates__/nuxt-app/assets/css/main.css +24 -0
- package/lib/__templates__/nuxt-app/nuxt.config.ts +63 -3
- package/lib/__templates__/nuxt-app/package.json +7 -0
- package/lib/__templates__/nuxt-app/pnpm-lock.yaml +1610 -53
- package/lib/__templates__/nuxt-app/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-app/scripts/dev.sh +2 -3
- package/lib/__templates__/nuxt-app/scripts/start.sh +3 -3
- package/lib/__templates__/nuxt-app/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-app/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-app/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-app/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-app/template.config.js +9 -0
- package/lib/__templates__/templates.json +7 -0
- package/lib/__templates__/vite/README.md +189 -11
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +6 -1
- package/lib/__templates__/vite/package.json +15 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +750 -15
- package/lib/__templates__/vite/scripts/build-server.js +70 -0
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +4 -4
- package/lib/__templates__/vite/scripts/start.sh +5 -5
- package/lib/__templates__/vite/server/index.ts +57 -0
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/vite.ts +79 -0
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/cli.js +89 -100
- package/package.json +4 -1
- package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +0 -21
- package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +0 -64
- package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +0 -31
- package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +0 -1
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +0 -19
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +0 -14
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +0 -6
- package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +0 -17
- package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +0 -3
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +0 -201
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +0 -203
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +0 -110
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +0 -140
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +0 -152
- package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +0 -35
- package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +0 -24
- package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +0 -1
- package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +0 -69
- package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +0 -360
- package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +0 -11
- package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +0 -79
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +0 -14
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +0 -151
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +0 -17
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +0 -64
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +0 -17
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +0 -3
- package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +0 -30
- package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +0 -32
- package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +0 -10
- package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import type { DefineComponent, SlotsType } from 'vue'
|
|
3
|
-
type IslandComponent<T> = DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>> & T
|
|
4
|
-
|
|
5
|
-
type HydrationStrategies = {
|
|
6
|
-
hydrateOnVisible?: IntersectionObserverInit | true
|
|
7
|
-
hydrateOnIdle?: number | true
|
|
8
|
-
hydrateOnInteraction?: keyof HTMLElementEventMap | Array<keyof HTMLElementEventMap> | true
|
|
9
|
-
hydrateOnMediaQuery?: string
|
|
10
|
-
hydrateAfter?: number
|
|
11
|
-
hydrateWhen?: boolean
|
|
12
|
-
hydrateNever?: true
|
|
13
|
-
}
|
|
14
|
-
type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }> & T
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
export const NuxtWelcome: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/welcome.vue")['default']
|
|
18
|
-
export const NuxtLayout: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
19
|
-
export const NuxtErrorBoundary: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
|
|
20
|
-
export const ClientOnly: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
21
|
-
export const DevOnly: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
22
|
-
export const ServerPlaceholder: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
23
|
-
export const NuxtLink: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
24
|
-
export const NuxtLoadingIndicator: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
25
|
-
export const NuxtTime: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
|
|
26
|
-
export const NuxtRouteAnnouncer: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
27
|
-
export const NuxtImg: typeof import("../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtImg.vue")['default']
|
|
28
|
-
export const NuxtPicture: typeof import("../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtPicture.vue")['default']
|
|
29
|
-
export const NuxtPage: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
|
|
30
|
-
export const NoScript: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
31
|
-
export const Link: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
32
|
-
export const Base: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
33
|
-
export const Title: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
34
|
-
export const Meta: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
35
|
-
export const Style: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
36
|
-
export const Head: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
37
|
-
export const Html: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
38
|
-
export const Body: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
39
|
-
export const NuxtIsland: typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
40
|
-
export const LazyNuxtWelcome: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
|
|
41
|
-
export const LazyNuxtLayout: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
|
|
42
|
-
export const LazyNuxtErrorBoundary: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
|
|
43
|
-
export const LazyClientOnly: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/client-only")['default']>
|
|
44
|
-
export const LazyDevOnly: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/dev-only")['default']>
|
|
45
|
-
export const LazyServerPlaceholder: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
46
|
-
export const LazyNuxtLink: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
|
|
47
|
-
export const LazyNuxtLoadingIndicator: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
|
|
48
|
-
export const LazyNuxtTime: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
|
|
49
|
-
export const LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
|
|
50
|
-
export const LazyNuxtImg: LazyComponent<typeof import("../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtImg.vue")['default']>
|
|
51
|
-
export const LazyNuxtPicture: LazyComponent<typeof import("../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/components/NuxtPicture.vue")['default']>
|
|
52
|
-
export const LazyNuxtPage: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
|
|
53
|
-
export const LazyNoScript: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
|
|
54
|
-
export const LazyLink: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Link']>
|
|
55
|
-
export const LazyBase: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Base']>
|
|
56
|
-
export const LazyTitle: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Title']>
|
|
57
|
-
export const LazyMeta: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Meta']>
|
|
58
|
-
export const LazyStyle: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Style']>
|
|
59
|
-
export const LazyHead: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Head']>
|
|
60
|
-
export const LazyHtml: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Html']>
|
|
61
|
-
export const LazyBody: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/components")['Body']>
|
|
62
|
-
export const LazyNuxtIsland: LazyComponent<typeof import("../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
|
|
63
|
-
|
|
64
|
-
export const componentNames: string[]
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics, useScriptDatabuddyAnalytics, useScriptRedditPixel, useScriptPayPal } from '#app/composables/script-stubs';
|
|
2
|
-
export { isVue2, isVue3 } from 'vue-demi';
|
|
3
|
-
export { defineNuxtLink } from '#app/components/nuxt-link';
|
|
4
|
-
export { useNuxtApp, tryUseNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt';
|
|
5
|
-
export { useAppConfig, updateAppConfig } from '#app/config';
|
|
6
|
-
export { defineNuxtComponent } from '#app/composables/component';
|
|
7
|
-
export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData';
|
|
8
|
-
export { useHydration } from '#app/composables/hydrate';
|
|
9
|
-
export { callOnce } from '#app/composables/once';
|
|
10
|
-
export { useState, clearNuxtState } from '#app/composables/state';
|
|
11
|
-
export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error';
|
|
12
|
-
export { useFetch, useLazyFetch } from '#app/composables/fetch';
|
|
13
|
-
export { useCookie, refreshCookie } from '#app/composables/cookie';
|
|
14
|
-
export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useResponseHeader, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
|
|
15
|
-
export { onNuxtReady } from '#app/composables/ready';
|
|
16
|
-
export { preloadComponents, prefetchComponents, preloadRouteComponents } from '#app/composables/preload';
|
|
17
|
-
export { abortNavigation, addRouteMiddleware, defineNuxtRouteMiddleware, setPageLayout, navigateTo, useRoute, useRouter, onBeforeRouteLeave, onBeforeRouteUpdate } from '#app/composables/router';
|
|
18
|
-
export { isPrerendered, loadPayload, preloadPayload, definePayloadReducer, definePayloadReviver } from '#app/composables/payload';
|
|
19
|
-
export { useLoadingIndicator } from '#app/composables/loading-indicator';
|
|
20
|
-
export { getAppManifest, getRouteRules } from '#app/composables/manifest';
|
|
21
|
-
export { reloadNuxtApp } from '#app/composables/chunk';
|
|
22
|
-
export { useRequestURL } from '#app/composables/url';
|
|
23
|
-
export { usePreviewMode } from '#app/composables/preview';
|
|
24
|
-
export { useRouteAnnouncer } from '#app/composables/route-announcer';
|
|
25
|
-
export { useRuntimeHook } from '#app/composables/runtime-hook';
|
|
26
|
-
export { useHead, useHeadSafe, useServerHeadSafe, useServerHead, useSeoMeta, useServerSeoMeta, injectHead } from '#app/composables/head';
|
|
27
|
-
export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, onWatcherCleanup, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue';
|
|
28
|
-
export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
|
|
29
|
-
export { setInterval } from '#app/compat/interval';
|
|
30
|
-
export { defineLazyHydrationComponent } from '#app/composables/lazy-hydration';
|
|
31
|
-
export { useImage } from '../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/composables';
|
package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/// <reference types="@nuxt/devtools" />
|
|
2
|
-
/// <reference types="@nuxt/telemetry" />
|
|
3
|
-
/// <reference types="@nuxt/image" />
|
|
4
|
-
/// <reference path="types/nitro-layouts.d.ts" />
|
|
5
|
-
/// <reference path="types/builder-env.d.ts" />
|
|
6
|
-
/// <reference path="types/plugins.d.ts" />
|
|
7
|
-
/// <reference path="types/build.d.ts" />
|
|
8
|
-
/// <reference path="types/app.config.d.ts" />
|
|
9
|
-
/// <reference path="types/runtime-config.d.ts" />
|
|
10
|
-
/// <reference types="nuxt/app" />
|
|
11
|
-
/// <reference path="../node_modules/.pnpm/@nuxt+nitro-server@4.3.1_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2_nuxt@4.3.1_@parcel+watcher@2_xfbbsy5rq6rhefjphkjnpwvgiq/node_modules/@nuxt/nitro-server/dist/index.d.mts" />
|
|
12
|
-
/// <reference path="types/middleware.d.ts" />
|
|
13
|
-
/// <reference path="types/components.d.ts" />
|
|
14
|
-
/// <reference path="imports.d.ts" />
|
|
15
|
-
/// <reference path="types/imports.d.ts" />
|
|
16
|
-
/// <reference path="schema/nuxt.schema.d.ts" />
|
|
17
|
-
/// <reference path="types/nitro.d.ts" />
|
|
18
|
-
|
|
19
|
-
export {}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/// <reference types="@nuxt/devtools" />
|
|
2
|
-
/// <reference types="@nuxt/telemetry" />
|
|
3
|
-
/// <reference types="@nuxt/image" />
|
|
4
|
-
/// <reference path="types/nitro-layouts.d.ts" />
|
|
5
|
-
/// <reference path="types/modules.d.ts" />
|
|
6
|
-
/// <reference path="types/runtime-config.d.ts" />
|
|
7
|
-
/// <reference path="types/app.config.d.ts" />
|
|
8
|
-
/// <reference types="nuxt" />
|
|
9
|
-
/// <reference path="../node_modules/.pnpm/@nuxt+vite-builder@4.3.1_@types+node@20.19.37_magicast@0.5.2_nuxt@4.3.1_@parcel+watcher@2.5.6_frsgyui3c2aijbxifwdihqba3y/node_modules/@nuxt/vite-builder/dist/index.d.mts" />
|
|
10
|
-
/// <reference path="../node_modules/.pnpm/@nuxt+nitro-server@4.3.1_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2_nuxt@4.3.1_@parcel+watcher@2_xfbbsy5rq6rhefjphkjnpwvgiq/node_modules/@nuxt/nitro-server/dist/index.d.mts" />
|
|
11
|
-
/// <reference path="types/middleware.d.ts" />
|
|
12
|
-
/// <reference path="schema/nuxt.schema.d.ts" />
|
|
13
|
-
|
|
14
|
-
export {}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface NuxtCustomSchema {
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
export type CustomAppConfig = Exclude<NuxtCustomSchema['appConfig'], undefined>
|
|
5
|
-
type _CustomAppConfig = CustomAppConfig
|
|
6
|
-
|
|
7
|
-
declare module '@nuxt/schema' {
|
|
8
|
-
interface NuxtConfig extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
9
|
-
interface NuxtOptions extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
10
|
-
interface CustomAppConfig extends _CustomAppConfig {}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
declare module 'nuxt/schema' {
|
|
14
|
-
interface NuxtConfig extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
15
|
-
interface NuxtOptions extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
16
|
-
interface CustomAppConfig extends _CustomAppConfig {}
|
|
17
|
-
}
|
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"paths": {
|
|
4
|
-
"@unhead/vue": [
|
|
5
|
-
"../node_modules/.pnpm/@unhead+vue@2.1.12_vue@3.5.30_typescript@5.9.3_/node_modules/@unhead/vue"
|
|
6
|
-
],
|
|
7
|
-
"@nuxt/devtools": [
|
|
8
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/@nuxt/devtools"
|
|
9
|
-
],
|
|
10
|
-
"@vue/runtime-core": [
|
|
11
|
-
"../node_modules/.pnpm/@vue+runtime-core@3.5.30/node_modules/@vue/runtime-core"
|
|
12
|
-
],
|
|
13
|
-
"@vue/compiler-sfc": [
|
|
14
|
-
"../node_modules/.pnpm/@vue+compiler-sfc@3.5.30/node_modules/@vue/compiler-sfc"
|
|
15
|
-
],
|
|
16
|
-
"unplugin-vue-router/client": [
|
|
17
|
-
"../node_modules/.pnpm/unplugin-vue-router@0.19.2_@vue+compiler-sfc@3.5.30_vue-router@4.6.4_vue@3.5.30_typescript@5._xfw4hbqe7tycclfp37765o3fjq/node_modules/unplugin-vue-router/client"
|
|
18
|
-
],
|
|
19
|
-
"@nuxt/schema": [
|
|
20
|
-
"../node_modules/.pnpm/@nuxt+schema@4.3.1/node_modules/@nuxt/schema"
|
|
21
|
-
],
|
|
22
|
-
"nuxt": [
|
|
23
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt"
|
|
24
|
-
],
|
|
25
|
-
"vite/client": [
|
|
26
|
-
"../node_modules/.pnpm/vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2/node_modules/vite/client"
|
|
27
|
-
],
|
|
28
|
-
"nitropack/types": [
|
|
29
|
-
"../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/types"
|
|
30
|
-
],
|
|
31
|
-
"nitropack/runtime": [
|
|
32
|
-
"../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/runtime"
|
|
33
|
-
],
|
|
34
|
-
"nitropack": [
|
|
35
|
-
"../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack"
|
|
36
|
-
],
|
|
37
|
-
"defu": [
|
|
38
|
-
"../node_modules/.pnpm/defu@6.1.4/node_modules/defu"
|
|
39
|
-
],
|
|
40
|
-
"h3": [
|
|
41
|
-
"../node_modules/.pnpm/h3@1.15.6/node_modules/h3"
|
|
42
|
-
],
|
|
43
|
-
"consola": [
|
|
44
|
-
"../node_modules/.pnpm/consola@3.4.2/node_modules/consola"
|
|
45
|
-
],
|
|
46
|
-
"ofetch": [
|
|
47
|
-
"../node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch"
|
|
48
|
-
],
|
|
49
|
-
"crossws": [
|
|
50
|
-
"../node_modules/.pnpm/crossws@0.3.5/node_modules/crossws"
|
|
51
|
-
],
|
|
52
|
-
"~": [
|
|
53
|
-
"../app"
|
|
54
|
-
],
|
|
55
|
-
"~/*": [
|
|
56
|
-
"../app/*"
|
|
57
|
-
],
|
|
58
|
-
"@": [
|
|
59
|
-
"../app"
|
|
60
|
-
],
|
|
61
|
-
"@/*": [
|
|
62
|
-
"../app/*"
|
|
63
|
-
],
|
|
64
|
-
"~~": [
|
|
65
|
-
".."
|
|
66
|
-
],
|
|
67
|
-
"~~/*": [
|
|
68
|
-
"../*"
|
|
69
|
-
],
|
|
70
|
-
"@@": [
|
|
71
|
-
".."
|
|
72
|
-
],
|
|
73
|
-
"@@/*": [
|
|
74
|
-
"../*"
|
|
75
|
-
],
|
|
76
|
-
"#shared": [
|
|
77
|
-
"../shared"
|
|
78
|
-
],
|
|
79
|
-
"#shared/*": [
|
|
80
|
-
"../shared/*"
|
|
81
|
-
],
|
|
82
|
-
"#server": [
|
|
83
|
-
"../server"
|
|
84
|
-
],
|
|
85
|
-
"#server/*": [
|
|
86
|
-
"../server/*"
|
|
87
|
-
],
|
|
88
|
-
"#app": [
|
|
89
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app"
|
|
90
|
-
],
|
|
91
|
-
"#app/*": [
|
|
92
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/*"
|
|
93
|
-
],
|
|
94
|
-
"vue-demi": [
|
|
95
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi"
|
|
96
|
-
],
|
|
97
|
-
"#image": [
|
|
98
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime"
|
|
99
|
-
],
|
|
100
|
-
"#image/*": [
|
|
101
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/*"
|
|
102
|
-
],
|
|
103
|
-
"#vue-router": [
|
|
104
|
-
"../node_modules/.pnpm/vue-router@4.6.4_vue@3.5.30_typescript@5.9.3_/node_modules/vue-router"
|
|
105
|
-
],
|
|
106
|
-
"#unhead/composables": [
|
|
107
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/composables"
|
|
108
|
-
],
|
|
109
|
-
"#imports": [
|
|
110
|
-
"./imports"
|
|
111
|
-
],
|
|
112
|
-
"#app-manifest": [
|
|
113
|
-
"./manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9"
|
|
114
|
-
],
|
|
115
|
-
"#components": [
|
|
116
|
-
"./components"
|
|
117
|
-
],
|
|
118
|
-
"#build": [
|
|
119
|
-
"."
|
|
120
|
-
],
|
|
121
|
-
"#build/*": [
|
|
122
|
-
"./*"
|
|
123
|
-
]
|
|
124
|
-
},
|
|
125
|
-
"esModuleInterop": true,
|
|
126
|
-
"skipLibCheck": true,
|
|
127
|
-
"target": "ESNext",
|
|
128
|
-
"allowJs": true,
|
|
129
|
-
"resolveJsonModule": true,
|
|
130
|
-
"moduleDetection": "force",
|
|
131
|
-
"isolatedModules": true,
|
|
132
|
-
"verbatimModuleSyntax": true,
|
|
133
|
-
"allowArbitraryExtensions": true,
|
|
134
|
-
"strict": false,
|
|
135
|
-
"noUncheckedIndexedAccess": true,
|
|
136
|
-
"forceConsistentCasingInFileNames": true,
|
|
137
|
-
"noImplicitOverride": true,
|
|
138
|
-
"module": "preserve",
|
|
139
|
-
"noEmit": true,
|
|
140
|
-
"lib": [
|
|
141
|
-
"ESNext",
|
|
142
|
-
"dom",
|
|
143
|
-
"dom.iterable",
|
|
144
|
-
"webworker"
|
|
145
|
-
],
|
|
146
|
-
"jsx": "preserve",
|
|
147
|
-
"jsxImportSource": "vue",
|
|
148
|
-
"types": [],
|
|
149
|
-
"moduleResolution": "Bundler",
|
|
150
|
-
"useDefineForClassFields": true,
|
|
151
|
-
"noImplicitThis": true,
|
|
152
|
-
"allowSyntheticDefaultImports": true
|
|
153
|
-
},
|
|
154
|
-
"include": [
|
|
155
|
-
"./nuxt.d.ts",
|
|
156
|
-
"../app/**/*",
|
|
157
|
-
"../modules/*/runtime/**/*",
|
|
158
|
-
"../test/nuxt/**/*",
|
|
159
|
-
"../tests/nuxt/**/*",
|
|
160
|
-
"../layers/*/app/**/*",
|
|
161
|
-
"../layers/*/modules/*/runtime/**/*",
|
|
162
|
-
"../shared/**/*.d.ts",
|
|
163
|
-
"../modules/*/shared/**/*.d.ts",
|
|
164
|
-
"../layers/*/shared/**/*.d.ts",
|
|
165
|
-
"../*.d.ts",
|
|
166
|
-
"../layers/*/*.d.ts"
|
|
167
|
-
],
|
|
168
|
-
"exclude": [
|
|
169
|
-
"../node_modules",
|
|
170
|
-
"../../../../../../node_modules",
|
|
171
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/node_modules",
|
|
172
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/node_modules",
|
|
173
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/@nuxt/devtools/node_modules",
|
|
174
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/@nuxt/telemetry/node_modules",
|
|
175
|
-
"../dist",
|
|
176
|
-
"../.data",
|
|
177
|
-
"../modules/*/runtime/server/**/*",
|
|
178
|
-
"../layers/*/server/**/*",
|
|
179
|
-
"../layers/*/modules/*/runtime/server/**/*",
|
|
180
|
-
"../modules/*.*",
|
|
181
|
-
"../nuxt.config.*",
|
|
182
|
-
"../.config/nuxt.*",
|
|
183
|
-
"../layers/*/nuxt.config.*",
|
|
184
|
-
"../layers/*/.config/nuxt.*",
|
|
185
|
-
"../layers/*/modules/**/*",
|
|
186
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/runtime/server",
|
|
187
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/dist/runtime/server",
|
|
188
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/*.*",
|
|
189
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/dist/*.*",
|
|
190
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/runtime/server",
|
|
191
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/dist/runtime/server",
|
|
192
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/*.*",
|
|
193
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/dist/*.*",
|
|
194
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/runtime/server",
|
|
195
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/dist/runtime/server",
|
|
196
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/*.*",
|
|
197
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/dist/*.*",
|
|
198
|
-
"../.output",
|
|
199
|
-
"../server"
|
|
200
|
-
]
|
|
201
|
-
}
|
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"paths": {
|
|
4
|
-
"@unhead/vue": [
|
|
5
|
-
"../node_modules/.pnpm/@unhead+vue@2.1.12_vue@3.5.30_typescript@5.9.3_/node_modules/@unhead/vue"
|
|
6
|
-
],
|
|
7
|
-
"@nuxt/devtools": [
|
|
8
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/@nuxt/devtools"
|
|
9
|
-
],
|
|
10
|
-
"@vue/runtime-core": [
|
|
11
|
-
"../node_modules/.pnpm/@vue+runtime-core@3.5.30/node_modules/@vue/runtime-core"
|
|
12
|
-
],
|
|
13
|
-
"@vue/compiler-sfc": [
|
|
14
|
-
"../node_modules/.pnpm/@vue+compiler-sfc@3.5.30/node_modules/@vue/compiler-sfc"
|
|
15
|
-
],
|
|
16
|
-
"unplugin-vue-router/client": [
|
|
17
|
-
"../node_modules/.pnpm/unplugin-vue-router@0.19.2_@vue+compiler-sfc@3.5.30_vue-router@4.6.4_vue@3.5.30_typescript@5._xfw4hbqe7tycclfp37765o3fjq/node_modules/unplugin-vue-router/client"
|
|
18
|
-
],
|
|
19
|
-
"@nuxt/schema": [
|
|
20
|
-
"../node_modules/.pnpm/@nuxt+schema@4.3.1/node_modules/@nuxt/schema"
|
|
21
|
-
],
|
|
22
|
-
"nuxt": [
|
|
23
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt"
|
|
24
|
-
],
|
|
25
|
-
"vite/client": [
|
|
26
|
-
"../node_modules/.pnpm/vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2/node_modules/vite/client"
|
|
27
|
-
],
|
|
28
|
-
"nitropack/types": [
|
|
29
|
-
"../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/types"
|
|
30
|
-
],
|
|
31
|
-
"nitropack/runtime": [
|
|
32
|
-
"../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/runtime"
|
|
33
|
-
],
|
|
34
|
-
"nitropack": [
|
|
35
|
-
"../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack"
|
|
36
|
-
],
|
|
37
|
-
"defu": [
|
|
38
|
-
"../node_modules/.pnpm/defu@6.1.4/node_modules/defu"
|
|
39
|
-
],
|
|
40
|
-
"h3": [
|
|
41
|
-
"../node_modules/.pnpm/h3@1.15.6/node_modules/h3"
|
|
42
|
-
],
|
|
43
|
-
"consola": [
|
|
44
|
-
"../node_modules/.pnpm/consola@3.4.2/node_modules/consola"
|
|
45
|
-
],
|
|
46
|
-
"ofetch": [
|
|
47
|
-
"../node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch"
|
|
48
|
-
],
|
|
49
|
-
"crossws": [
|
|
50
|
-
"../node_modules/.pnpm/crossws@0.3.5/node_modules/crossws"
|
|
51
|
-
],
|
|
52
|
-
"~": [
|
|
53
|
-
"../app"
|
|
54
|
-
],
|
|
55
|
-
"~/*": [
|
|
56
|
-
"../app/*"
|
|
57
|
-
],
|
|
58
|
-
"@": [
|
|
59
|
-
"../app"
|
|
60
|
-
],
|
|
61
|
-
"@/*": [
|
|
62
|
-
"../app/*"
|
|
63
|
-
],
|
|
64
|
-
"~~": [
|
|
65
|
-
".."
|
|
66
|
-
],
|
|
67
|
-
"~~/*": [
|
|
68
|
-
"../*"
|
|
69
|
-
],
|
|
70
|
-
"@@": [
|
|
71
|
-
".."
|
|
72
|
-
],
|
|
73
|
-
"@@/*": [
|
|
74
|
-
"../*"
|
|
75
|
-
],
|
|
76
|
-
"#shared": [
|
|
77
|
-
"../shared"
|
|
78
|
-
],
|
|
79
|
-
"#shared/*": [
|
|
80
|
-
"../shared/*"
|
|
81
|
-
],
|
|
82
|
-
"#server": [
|
|
83
|
-
"../server"
|
|
84
|
-
],
|
|
85
|
-
"#server/*": [
|
|
86
|
-
"../server/*"
|
|
87
|
-
],
|
|
88
|
-
"#app": [
|
|
89
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app"
|
|
90
|
-
],
|
|
91
|
-
"#app/*": [
|
|
92
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/*"
|
|
93
|
-
],
|
|
94
|
-
"vue-demi": [
|
|
95
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi"
|
|
96
|
-
],
|
|
97
|
-
"#image": [
|
|
98
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime"
|
|
99
|
-
],
|
|
100
|
-
"#image/*": [
|
|
101
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/*"
|
|
102
|
-
],
|
|
103
|
-
"#vue-router": [
|
|
104
|
-
"../node_modules/.pnpm/vue-router@4.6.4_vue@3.5.30_typescript@5.9.3_/node_modules/vue-router"
|
|
105
|
-
],
|
|
106
|
-
"#unhead/composables": [
|
|
107
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/head/runtime/composables"
|
|
108
|
-
],
|
|
109
|
-
"#imports": [
|
|
110
|
-
"./imports"
|
|
111
|
-
],
|
|
112
|
-
"#app-manifest": [
|
|
113
|
-
"./manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9"
|
|
114
|
-
],
|
|
115
|
-
"#components": [
|
|
116
|
-
"./components"
|
|
117
|
-
],
|
|
118
|
-
"#build": [
|
|
119
|
-
"."
|
|
120
|
-
],
|
|
121
|
-
"#build/*": [
|
|
122
|
-
"./*"
|
|
123
|
-
]
|
|
124
|
-
},
|
|
125
|
-
"esModuleInterop": true,
|
|
126
|
-
"skipLibCheck": true,
|
|
127
|
-
"target": "ESNext",
|
|
128
|
-
"allowJs": true,
|
|
129
|
-
"resolveJsonModule": true,
|
|
130
|
-
"moduleDetection": "force",
|
|
131
|
-
"isolatedModules": true,
|
|
132
|
-
"verbatimModuleSyntax": true,
|
|
133
|
-
"allowArbitraryExtensions": true,
|
|
134
|
-
"strict": false,
|
|
135
|
-
"noUncheckedIndexedAccess": true,
|
|
136
|
-
"forceConsistentCasingInFileNames": true,
|
|
137
|
-
"noImplicitOverride": true,
|
|
138
|
-
"module": "preserve",
|
|
139
|
-
"noEmit": true,
|
|
140
|
-
"lib": [
|
|
141
|
-
"ESNext",
|
|
142
|
-
"dom",
|
|
143
|
-
"dom.iterable",
|
|
144
|
-
"webworker"
|
|
145
|
-
],
|
|
146
|
-
"jsx": "preserve",
|
|
147
|
-
"jsxImportSource": "vue",
|
|
148
|
-
"types": [],
|
|
149
|
-
"moduleResolution": "Bundler",
|
|
150
|
-
"useDefineForClassFields": true,
|
|
151
|
-
"noImplicitThis": true,
|
|
152
|
-
"allowSyntheticDefaultImports": true
|
|
153
|
-
},
|
|
154
|
-
"include": [
|
|
155
|
-
"./nuxt.d.ts",
|
|
156
|
-
"../app/**/*",
|
|
157
|
-
"../modules/*/runtime/**/*",
|
|
158
|
-
"../test/nuxt/**/*",
|
|
159
|
-
"../tests/nuxt/**/*",
|
|
160
|
-
"../layers/*/app/**/*",
|
|
161
|
-
"../layers/*/modules/*/runtime/**/*",
|
|
162
|
-
"../shared/**/*.d.ts",
|
|
163
|
-
"../modules/*/shared/**/*.d.ts",
|
|
164
|
-
"../layers/*/shared/**/*.d.ts",
|
|
165
|
-
"../*.d.ts",
|
|
166
|
-
"../layers/*/*.d.ts",
|
|
167
|
-
"./nuxt.node.d.ts",
|
|
168
|
-
"../modules/*.*",
|
|
169
|
-
"../nuxt.config.*",
|
|
170
|
-
"../.config/nuxt.*",
|
|
171
|
-
"../layers/*/nuxt.config.*",
|
|
172
|
-
"../layers/*/.config/nuxt.*",
|
|
173
|
-
"../layers/*/modules/**/*",
|
|
174
|
-
"../shared/**/*",
|
|
175
|
-
"../modules/*/shared/**/*",
|
|
176
|
-
"../layers/*/shared/**/*",
|
|
177
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/runtime",
|
|
178
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/dist/runtime",
|
|
179
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/runtime",
|
|
180
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/dist/runtime",
|
|
181
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/runtime",
|
|
182
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/dist/runtime"
|
|
183
|
-
],
|
|
184
|
-
"exclude": [
|
|
185
|
-
"../node_modules",
|
|
186
|
-
"../../../../../../node_modules",
|
|
187
|
-
"../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/node_modules",
|
|
188
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/node_modules",
|
|
189
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/@nuxt/devtools/node_modules",
|
|
190
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/@nuxt/telemetry/node_modules",
|
|
191
|
-
"../dist",
|
|
192
|
-
"../.data",
|
|
193
|
-
"../modules/*/runtime/server/**/*",
|
|
194
|
-
"../layers/*/server/**/*",
|
|
195
|
-
"../layers/*/modules/*/runtime/server/**/*",
|
|
196
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/runtime/server",
|
|
197
|
-
"../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/dist/runtime/server",
|
|
198
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/runtime/server",
|
|
199
|
-
"../node_modules/.pnpm/@nuxt+devtools@3.2.3_vite@7.3.1_@types+node@20.19.37_jiti@2.6.1_terser@5.46.0_yaml@2.8.2__vue@3.5.30_typescript@5.9.3_/node_modules/dist/runtime/server",
|
|
200
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/runtime/server",
|
|
201
|
-
"../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/dist/runtime/server"
|
|
202
|
-
]
|
|
203
|
-
}
|