@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.
Files changed (80) hide show
  1. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  2. package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
  3. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  4. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  5. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  6. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  7. package/lib/__templates__/nextjs/README.md +5 -0
  8. package/lib/__templates__/nextjs/_gitignore +0 -3
  9. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  10. package/lib/__templates__/nextjs/next.config.ts +1 -2
  11. package/lib/__templates__/nextjs/package.json +1 -5
  12. package/lib/__templates__/nextjs/pnpm-lock.yaml +1012 -12
  13. package/lib/__templates__/nextjs/scripts/build.sh +2 -2
  14. package/lib/__templates__/nextjs/scripts/dev.sh +3 -4
  15. package/lib/__templates__/nextjs/scripts/start.sh +3 -3
  16. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  17. package/lib/__templates__/nextjs/{server.ts → src/server.ts} +14 -14
  18. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  19. package/lib/__templates__/nuxt-app/README.md +5 -15
  20. package/lib/__templates__/nuxt-app/app/app.vue +1 -188
  21. package/lib/__templates__/nuxt-app/app/pages/index.vue +23 -0
  22. package/lib/__templates__/nuxt-app/assets/css/main.css +24 -0
  23. package/lib/__templates__/nuxt-app/nuxt.config.ts +63 -3
  24. package/lib/__templates__/nuxt-app/package.json +7 -0
  25. package/lib/__templates__/nuxt-app/pnpm-lock.yaml +1610 -53
  26. package/lib/__templates__/nuxt-app/postcss.config.mjs +8 -0
  27. package/lib/__templates__/nuxt-app/scripts/dev.sh +2 -3
  28. package/lib/__templates__/nuxt-app/scripts/start.sh +3 -3
  29. package/lib/__templates__/nuxt-app/server/api/hello.ts +10 -0
  30. package/lib/__templates__/nuxt-app/server/middleware/logger.ts +10 -0
  31. package/lib/__templates__/nuxt-app/server/routes/health.ts +10 -0
  32. package/lib/__templates__/nuxt-app/tailwind.config.js +13 -0
  33. package/lib/__templates__/nuxt-app/template.config.js +9 -0
  34. package/lib/__templates__/templates.json +7 -0
  35. package/lib/__templates__/vite/README.md +189 -11
  36. package/lib/__templates__/vite/_gitignore +1 -0
  37. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  38. package/lib/__templates__/vite/package.json +15 -3
  39. package/lib/__templates__/vite/pnpm-lock.yaml +750 -15
  40. package/lib/__templates__/vite/scripts/build-server.js +70 -0
  41. package/lib/__templates__/vite/scripts/build.sh +4 -1
  42. package/lib/__templates__/vite/scripts/dev.sh +4 -4
  43. package/lib/__templates__/vite/scripts/start.sh +5 -5
  44. package/lib/__templates__/vite/server/index.ts +57 -0
  45. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  46. package/lib/__templates__/vite/server/vite.ts +79 -0
  47. package/lib/__templates__/vite/tsconfig.json +4 -3
  48. package/lib/cli.js +89 -100
  49. package/package.json +4 -1
  50. package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +0 -21
  51. package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +0 -64
  52. package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +0 -31
  53. package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +0 -1
  54. package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +0 -19
  55. package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +0 -14
  56. package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +0 -6
  57. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +0 -17
  58. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +0 -3
  59. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +0 -201
  60. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +0 -203
  61. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +0 -110
  62. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +0 -140
  63. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +0 -152
  64. package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +0 -35
  65. package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +0 -24
  66. package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +0 -1
  67. package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +0 -69
  68. package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +0 -360
  69. package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +0 -11
  70. package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +0 -79
  71. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +0 -14
  72. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +0 -151
  73. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +0 -17
  74. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +0 -64
  75. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +0 -17
  76. package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +0 -3
  77. package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +0 -30
  78. package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +0 -32
  79. package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +0 -10
  80. package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
@@ -1,110 +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
- "esModuleInterop": true,
54
- "skipLibCheck": true,
55
- "target": "ESNext",
56
- "allowJs": true,
57
- "resolveJsonModule": true,
58
- "moduleDetection": "force",
59
- "isolatedModules": true,
60
- "verbatimModuleSyntax": true,
61
- "allowArbitraryExtensions": true,
62
- "strict": false,
63
- "noUncheckedIndexedAccess": true,
64
- "forceConsistentCasingInFileNames": true,
65
- "noImplicitOverride": true,
66
- "module": "preserve",
67
- "noEmit": true,
68
- "types": [],
69
- "moduleResolution": "Bundler",
70
- "useDefineForClassFields": true,
71
- "noImplicitThis": true,
72
- "allowSyntheticDefaultImports": true
73
- },
74
- "include": [
75
- "./nuxt.node.d.ts",
76
- "../modules/*.*",
77
- "../nuxt.config.*",
78
- "../.config/nuxt.*",
79
- "../layers/*/nuxt.config.*",
80
- "../layers/*/.config/nuxt.*",
81
- "../layers/*/modules/**/*",
82
- "../nuxt.schema.*",
83
- "../layers/*/nuxt.schema.*"
84
- ],
85
- "exclude": [
86
- "../node_modules",
87
- "../../../../../../node_modules",
88
- "../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",
89
- "../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",
90
- "../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",
91
- "../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/@nuxt/telemetry/node_modules",
92
- "../dist",
93
- "../.data",
94
- "../app/**/*",
95
- "../modules/*/runtime/**/*",
96
- "../test/nuxt/**/*",
97
- "../tests/nuxt/**/*",
98
- "../layers/*/app/**/*",
99
- "../layers/*/modules/*/runtime/**/*",
100
- "../modules/*/runtime/server/**/*",
101
- "../layers/*/server/**/*",
102
- "../layers/*/modules/*/runtime/server/**/*",
103
- "../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/runtime",
104
- "../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/dist/runtime",
105
- "../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",
106
- "../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",
107
- "../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/runtime",
108
- "../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/dist/runtime"
109
- ]
110
- }
@@ -1,140 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "forceConsistentCasingInFileNames": true,
4
- "strict": true,
5
- "noEmit": true,
6
- "skipLibCheck": true,
7
- "target": "ESNext",
8
- "module": "ESNext",
9
- "moduleResolution": "Bundler",
10
- "allowJs": true,
11
- "resolveJsonModule": true,
12
- "jsx": "preserve",
13
- "allowSyntheticDefaultImports": true,
14
- "jsxFactory": "h",
15
- "jsxFragmentFactory": "Fragment",
16
- "paths": {
17
- "#imports": [
18
- "./types/nitro-imports"
19
- ],
20
- "~/*": [
21
- "../app/*"
22
- ],
23
- "@/*": [
24
- "../app/*"
25
- ],
26
- "~~/*": [
27
- "../*"
28
- ],
29
- "@@/*": [
30
- "../*"
31
- ],
32
- "@unhead/vue": [
33
- "../node_modules/.pnpm/@unhead+vue@2.1.12_vue@3.5.30_typescript@5.9.3_/node_modules/@unhead/vue"
34
- ],
35
- "@nuxt/devtools": [
36
- "../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"
37
- ],
38
- "@vue/runtime-core": [
39
- "../node_modules/.pnpm/@vue+runtime-core@3.5.30/node_modules/@vue/runtime-core"
40
- ],
41
- "@vue/compiler-sfc": [
42
- "../node_modules/.pnpm/@vue+compiler-sfc@3.5.30/node_modules/@vue/compiler-sfc"
43
- ],
44
- "unplugin-vue-router/client": [
45
- "../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"
46
- ],
47
- "@nuxt/schema": [
48
- "../node_modules/.pnpm/@nuxt+schema@4.3.1/node_modules/@nuxt/schema"
49
- ],
50
- "nuxt": [
51
- "../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"
52
- ],
53
- "vite/client": [
54
- "../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"
55
- ],
56
- "nitropack/types": [
57
- "../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/types"
58
- ],
59
- "nitropack/runtime": [
60
- "../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack/runtime"
61
- ],
62
- "nitropack": [
63
- "../node_modules/.pnpm/nitropack@2.13.1/node_modules/nitropack"
64
- ],
65
- "defu": [
66
- "../node_modules/.pnpm/defu@6.1.4/node_modules/defu"
67
- ],
68
- "h3": [
69
- "../node_modules/.pnpm/h3@1.15.6/node_modules/h3"
70
- ],
71
- "consola": [
72
- "../node_modules/.pnpm/consola@3.4.2/node_modules/consola"
73
- ],
74
- "ofetch": [
75
- "../node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch"
76
- ],
77
- "crossws": [
78
- "../node_modules/.pnpm/crossws@0.3.5/node_modules/crossws"
79
- ],
80
- "#shared": [
81
- "../shared"
82
- ],
83
- "#shared/*": [
84
- "../shared/*"
85
- ],
86
- "#server": [
87
- "../server"
88
- ],
89
- "#server/*": [
90
- "../server/*"
91
- ],
92
- "#build": [
93
- "./"
94
- ],
95
- "#build/*": [
96
- "./*"
97
- ],
98
- "#internal/nuxt/paths": [
99
- "../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/runtime/utils/paths"
100
- ],
101
- "#image": [
102
- "../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"
103
- ],
104
- "#image/*": [
105
- "../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/*"
106
- ],
107
- "#unhead/composables": [
108
- "../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"
109
- ]
110
- },
111
- "lib": [
112
- "esnext",
113
- "webworker",
114
- "dom.iterable"
115
- ],
116
- "noUncheckedIndexedAccess": true,
117
- "allowArbitraryExtensions": true
118
- },
119
- "include": [
120
- "./types/nitro-nuxt.d.ts",
121
- "../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/runtime/server",
122
- "../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",
123
- "../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",
124
- "../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",
125
- "../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/runtime/server",
126
- "../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/dist/runtime/server",
127
- "../server/**/*",
128
- "../shared/**/*.d.ts",
129
- "./types/nitro.d.ts"
130
- ],
131
- "exclude": [
132
- "../node_modules",
133
- "../../../../../../node_modules",
134
- "../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",
135
- "../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",
136
- "../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",
137
- "../node_modules/.pnpm/@nuxt+telemetry@2.7.0_@nuxt+kit@4.3.1_magicast@0.5.2_/node_modules/@nuxt/telemetry/node_modules",
138
- "../dist"
139
- ]
140
- }
@@ -1,152 +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
- "#build": [
116
- "."
117
- ],
118
- "#build/*": [
119
- "./*"
120
- ]
121
- },
122
- "esModuleInterop": true,
123
- "skipLibCheck": true,
124
- "target": "ESNext",
125
- "allowJs": true,
126
- "resolveJsonModule": true,
127
- "moduleDetection": "force",
128
- "isolatedModules": true,
129
- "verbatimModuleSyntax": true,
130
- "allowArbitraryExtensions": true,
131
- "strict": false,
132
- "noUncheckedIndexedAccess": true,
133
- "forceConsistentCasingInFileNames": true,
134
- "noImplicitOverride": true,
135
- "module": "preserve",
136
- "noEmit": true,
137
- "types": [],
138
- "moduleResolution": "Bundler",
139
- "useDefineForClassFields": true,
140
- "noImplicitThis": true,
141
- "allowSyntheticDefaultImports": true
142
- },
143
- "include": [
144
- "./nuxt.shared.d.ts",
145
- "../shared/**/*",
146
- "../modules/*/shared/**/*",
147
- "../layers/*/shared/**/*",
148
- "../*.d.ts",
149
- "../layers/*/*.d.ts"
150
- ],
151
- "exclude": []
152
- }
@@ -1,35 +0,0 @@
1
-
2
- import type { AppConfigInput, CustomAppConfig } from 'nuxt/schema'
3
- import type { Defu } from 'defu'
4
-
5
-
6
- declare global {
7
- const defineAppConfig: <C extends AppConfigInput> (config: C) => C
8
- }
9
-
10
- declare const inlineConfig = {
11
- "nuxt": {}
12
- }
13
- type ResolvedAppConfig = Defu<typeof inlineConfig, []>
14
- type IsAny<T> = 0 extends 1 & T ? true : false
15
-
16
- type MergedAppConfig<Resolved extends Record<string, unknown>, Custom extends Record<string, unknown>> = {
17
- [K in keyof (Resolved & Custom)]: K extends keyof Custom
18
- ? unknown extends Custom[K]
19
- ? Resolved[K]
20
- : IsAny<Custom[K]> extends true
21
- ? Resolved[K]
22
- : Custom[K] extends Record<string, any>
23
- ? Resolved[K] extends Record<string, any>
24
- ? MergedAppConfig<Resolved[K], Custom[K]>
25
- : Exclude<Custom[K], undefined>
26
- : Exclude<Custom[K], undefined>
27
- : Resolved[K]
28
- }
29
-
30
- declare module 'nuxt/schema' {
31
- interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
32
- }
33
- declare module '@nuxt/schema' {
34
- interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
35
- }
@@ -1,24 +0,0 @@
1
- declare module "#build/app-component.mjs";
2
- declare module "#build/nitro.client.mjs";
3
- declare module "#build/plugins.client.mjs";
4
- declare module "#build/css.mjs";
5
- declare module "#build/fetch.mjs";
6
- declare module "#build/error-component.mjs";
7
- declare module "#build/global-polyfills.mjs";
8
- declare module "#build/layouts.mjs";
9
- declare module "#build/middleware.mjs";
10
- declare module "#build/nuxt.config.mjs";
11
- declare module "#build/paths.mjs";
12
- declare module "#build/root-component.mjs";
13
- declare module "#build/plugins.server.mjs";
14
- declare module "#build/test-component-wrapper.mjs";
15
- declare module "#build/image-options.mjs";
16
- declare module "#build/pages.mjs";
17
- declare module "#build/router.options.mjs";
18
- declare module "#build/unhead-options.mjs";
19
- declare module "#build/unhead.config.mjs";
20
- declare module "#build/components.plugin.mjs";
21
- declare module "#build/component-names.mjs";
22
- declare module "#build/components.islands.mjs";
23
- declare module "#build/component-chunk.mjs";
24
- declare module "#build/route-rules.mjs";
@@ -1 +0,0 @@
1
- import "vite/client";
@@ -1,69 +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
- interface _GlobalComponents {
17
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
-
65
- declare module 'vue' {
66
- export interface GlobalComponents extends _GlobalComponents { }
67
- }
68
-
69
- export {}