@cooperco/nuxt-layer-base 1.0.1 → 1.0.2
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/README.md +70 -0
- package/package.json +6 -5
- package/.env +0 -10
- package/.nuxt/app.config.mjs +0 -21
- package/.nuxt/components.d.ts +0 -126
- package/.nuxt/dev/index.mjs +0 -3013
- package/.nuxt/dev/index.mjs.map +0 -1
- package/.nuxt/dist/server/client.manifest.mjs +0 -1
- package/.nuxt/dist/server/server.mjs +0 -1
- package/.nuxt/eslint-typegen.d.ts +0 -9474
- package/.nuxt/eslint.config.d.mts +0 -9
- package/.nuxt/eslint.config.mjs +0 -53
- package/.nuxt/i18n-route-resources.mjs +0 -3
- package/.nuxt/imports.d.ts +0 -34
- package/.nuxt/manifest/latest.json +0 -1
- package/.nuxt/manifest/meta/11e69554-8b10-4927-b475-a1b7f6b2bbac.json +0 -1
- package/.nuxt/manifest/meta/dev.json +0 -1
- package/.nuxt/nitro.json +0 -17
- package/.nuxt/nuxt.d.ts +0 -20
- package/.nuxt/nuxt.json +0 -9
- package/.nuxt/nuxt.node.d.ts +0 -13
- package/.nuxt/nuxt.shared.d.ts +0 -5
- package/.nuxt/schema/nuxt.schema.d.ts +0 -17
- package/.nuxt/schema/nuxt.schema.json +0 -3
- package/.nuxt/tsconfig.app.json +0 -226
- package/.nuxt/tsconfig.app.tsbuildinfo +0 -1
- package/.nuxt/tsconfig.json +0 -228
- package/.nuxt/tsconfig.node.json +0 -131
- package/.nuxt/tsconfig.node.tsbuildinfo +0 -1
- package/.nuxt/tsconfig.server.json +0 -162
- package/.nuxt/tsconfig.server.tsbuildinfo +0 -1
- package/.nuxt/tsconfig.shared.json +0 -182
- package/.nuxt/tsconfig.shared.tsbuildinfo +0 -1
- package/.nuxt/types/app.config.d.ts +0 -35
- package/.nuxt/types/build.d.ts +0 -25
- package/.nuxt/types/builder-env.d.ts +0 -1
- package/.nuxt/types/i18n-plugin.d.ts +0 -123
- package/.nuxt/types/imports.d.ts +0 -387
- package/.nuxt/types/middleware.d.ts +0 -11
- package/.nuxt/types/modules.d.ts +0 -87
- package/.nuxt/types/nitro-config.d.ts +0 -14
- package/.nuxt/types/nitro-imports.d.ts +0 -162
- package/.nuxt/types/nitro-nuxt.d.ts +0 -59
- package/.nuxt/types/nitro-routes.d.ts +0 -20
- package/.nuxt/types/nitro.d.ts +0 -3
- package/.nuxt/types/plugins.d.ts +0 -41
- package/.nuxt/types/runtime-config.d.ts +0 -102
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/Users//devin//AppData//Local//JetBrains//WebStorm2025.2//terminal//history//nuxt-layers-history +0 -736
- package/Users//devin//AppData//Local//JetBrains//WebStorm2025.2//terminal//history//nuxt-layers-history1 +0 -0
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { FlatConfigComposer } from "../node_modules/eslint-flat-config-utils/dist/index.mjs"
|
|
2
|
-
import { defineFlatConfigs } from "../node_modules/@nuxt/eslint-config/dist/flat.mjs"
|
|
3
|
-
import type { NuxtESLintConfigOptionsResolved } from "../node_modules/@nuxt/eslint-config/dist/flat.mjs"
|
|
4
|
-
|
|
5
|
-
declare const configs: FlatConfigComposer
|
|
6
|
-
declare const options: NuxtESLintConfigOptionsResolved
|
|
7
|
-
declare const withNuxt: typeof defineFlatConfigs
|
|
8
|
-
export default withNuxt
|
|
9
|
-
export { withNuxt, defineFlatConfigs, configs, options }
|
package/.nuxt/eslint.config.mjs
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
// ESLint config generated by Nuxt
|
|
2
|
-
/// <reference path="./eslint-typegen.d.ts" />
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
|
|
6
|
-
import typegen from '../node_modules/eslint-typegen/dist/index.mjs';
|
|
7
|
-
import { createConfigForNuxt, defineFlatConfigs, resolveOptions } from '../node_modules/@nuxt/eslint-config/dist/flat.mjs';
|
|
8
|
-
import { fileURLToPath } from 'node:url';
|
|
9
|
-
|
|
10
|
-
const r = (...args) => fileURLToPath(new URL(...args, import.meta.url))
|
|
11
|
-
|
|
12
|
-
export { defineFlatConfigs }
|
|
13
|
-
|
|
14
|
-
export const options = resolveOptions({
|
|
15
|
-
features: {
|
|
16
|
-
"standalone": true,
|
|
17
|
-
"stylistic": true
|
|
18
|
-
},
|
|
19
|
-
dirs: {
|
|
20
|
-
pages: ["app/pages"],
|
|
21
|
-
composables: ["app/composables", "app/utils"],
|
|
22
|
-
components: ["app/components"],
|
|
23
|
-
componentsPrefixed: [],
|
|
24
|
-
layouts: ["app/layouts"],
|
|
25
|
-
plugins: ["app/plugins"],
|
|
26
|
-
middleware: ["app/middleware"],
|
|
27
|
-
modules: ["modules"],
|
|
28
|
-
servers: [],
|
|
29
|
-
root: [],
|
|
30
|
-
src: ["app"],
|
|
31
|
-
}
|
|
32
|
-
})
|
|
33
|
-
|
|
34
|
-
export const configs = createConfigForNuxt(options)
|
|
35
|
-
|
|
36
|
-
configs.append(
|
|
37
|
-
// Set globals from imports registry
|
|
38
|
-
{
|
|
39
|
-
name: 'nuxt/import-globals',
|
|
40
|
-
languageOptions: {
|
|
41
|
-
globals: Object.fromEntries(["useTranslation","LogLevel","useLoggly","getCookieLocale","getHeaderLanguage","getHeaderLanguages","getHeaderLocale","getHeaderLocales","getPathLocale","getQueryLocale","setCookieLocale","tryCookieLocale","tryHeaderLocale","tryHeaderLocales","tryPathLocale","tryQueryLocale","useNuxtDevTools","defineI18nConfig","defineI18nLocale","defineI18nRoute","useBrowserLocale","useCookieLocale","useI18nPreloadKeys","useLocaleHead","useLocalePath","useLocaleRoute","useRouteBaseName","useSetI18nParams","useSwitchLocalePath","defineI18nLocaleDetector","defineI18nConfig","defineI18nLocale","defineAppConfig","__buildAssetsURL","__publicAssetsURL","useI18n","cancelIdleCallback","requestIdleCallback","setInterval","defineNuxtLink","clearNuxtData","refreshNuxtData","useAsyncData","useLazyAsyncData","useNuxtData","reloadNuxtApp","defineNuxtComponent","refreshCookie","useCookie","clearError","createError","isNuxtError","showError","useError","useFetch","useLazyFetch","injectHead","useHead","useHeadSafe","useSeoMeta","useServerHead","useServerHeadSafe","useServerSeoMeta","useHydration","defineLazyHydrationComponent","useLoadingIndicator","getAppManifest","getRouteRules","callOnce","definePayloadReducer","definePayloadReviver","isPrerendered","loadPayload","preloadPayload","prefetchComponents","preloadComponents","preloadRouteComponents","usePreviewMode","onNuxtReady","useRouteAnnouncer","abortNavigation","addRouteMiddleware","defineNuxtRouteMiddleware","navigateTo","onBeforeRouteLeave","onBeforeRouteUpdate","setPageLayout","useRoute","useRouter","useRuntimeHook","useScript","useScriptClarity","useScriptCloudflareWebAnalytics","useScriptCrisp","useScriptEventPage","useScriptFathomAnalytics","useScriptGoogleAdsense","useScriptGoogleAnalytics","useScriptGoogleMaps","useScriptGoogleTagManager","useScriptHotjar","useScriptIntercom","useScriptLemonSqueezy","useScriptMatomoAnalytics","useScriptMetaPixel","useScriptNpm","useScriptPlausibleAnalytics","useScriptRybbitAnalytics","useScriptSegment","useScriptSnapchatPixel","useScriptStripe","useScriptTriggerConsent","useScriptTriggerElement","useScriptUmamiAnalytics","useScriptVimeoPlayer","useScriptXPixel","useScriptYouTubePlayer","onPrehydrate","prerenderRoutes","setResponseStatus","useRequestEvent","useRequestFetch","useRequestHeader","useRequestHeaders","useResponseHeader","clearNuxtState","useState","useRequestURL","updateAppConfig","useAppConfig","defineAppConfig","defineNuxtPlugin","definePayloadPlugin","tryUseNuxtApp","useNuxtApp","useRuntimeConfig","appendCorsHeaders","appendCorsPreflightHeaders","appendHeader","appendHeaders","appendResponseHeader","appendResponseHeaders","assertMethod","callNodeListener","clearResponseHeaders","clearSession","createApp","createAppEventHandler","createError","createEvent","createEventStream","createRouter","defaultContentType","defineEventHandler","defineLazyEventHandler","defineNodeListener","defineNodeMiddleware","defineRequestMiddleware","defineResponseMiddleware","defineWebSocket","defineWebSocketHandler","deleteCookie","dynamicEventHandler","eventHandler","fetchWithEvent","fromNodeMiddleware","fromPlainHandler","fromWebHandler","getCookie","getHeader","getHeaders","getMethod","getProxyRequestHeaders","getQuery","getRequestFingerprint","getRequestHeader","getRequestHeaders","getRequestHost","getRequestIP","getRequestPath","getRequestProtocol","getRequestURL","getRequestWebStream","getResponseHeader","getResponseHeaders","getResponseStatus","getResponseStatusText","getRouterParam","getRouterParams","getSession","getValidatedQuery","getValidatedRouterParams","handleCacheHeaders","handleCors","isCorsOriginAllowed","isError","isEvent","isEventHandler","isMethod","isPreflightRequest","isStream","isWebResponse","lazyEventHandler","parseCookies","promisifyNodeListener","proxyRequest","readBody","readFormData","readMultipartFormData","readRawBody","readValidatedBody","removeResponseHeader","sanitizeStatusCode","sanitizeStatusMessage","sealSession","send","sendError","sendIterable","sendNoContent","sendProxy","sendRedirect","sendStream","sendWebResponse","serveStatic","setCookie","setHeader","setHeaders","setResponseHeader","setResponseHeaders","setResponseStatus","splitCookiesString","toEventHandler","toNodeListener","toPlainHandler","toWebHandler","toWebRequest","unsealSession","updateSession","useBase","useSession","writeEarlyHints","useNitroApp","cachedEventHandler","cachedFunction","defineCachedEventHandler","defineCachedFunction","useAppConfig","useRuntimeConfig","useEvent","defineNitroErrorHandler","defineRouteMeta","defineNitroPlugin","nitroPlugin","defineRenderHandler","getRouteRules","useStorage","defineTask","runTask","Component","ComponentPublicInstance","computed","ComputedRef","customRef","defineAsyncComponent","defineComponent","DirectiveBinding","effect","effectScope","ExtractDefaultPropTypes","ExtractPropTypes","ExtractPublicPropTypes","getCurrentInstance","getCurrentScope","h","hasInjectionContext","inject","InjectionKey","isProxy","isReactive","isReadonly","isRef","isShallow","markRaw","MaybeRef","MaybeRefOrGetter","mergeModels","nextTick","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","PropType","provide","proxyRefs","reactive","readonly","ref","Ref","resolveComponent","shallowReactive","shallowReadonly","shallowRef","toRaw","toRef","toRefs","toValue","triggerRef","unref","useAttrs","useCssModule","useCssVars","useId","useModel","useShadowRoot","useSlots","useTemplateRef","useTransitionState","VNode","watch","watchEffect","watchPostEffect","watchSyncEffect","withCtx","withDirectives","withKeys","withMemo","withModifiers","withScopeId","WritableComputedRef","isVue2","isVue3"].map(i => [i, 'readonly'])),
|
|
42
|
-
},
|
|
43
|
-
}
|
|
44
|
-
)
|
|
45
|
-
|
|
46
|
-
export function withNuxt(...customs) {
|
|
47
|
-
return configs
|
|
48
|
-
.clone()
|
|
49
|
-
.append(...customs)
|
|
50
|
-
.onResolved(configs => typegen(configs, { dtsPath: r("./eslint-typegen.d.ts"), augmentFlatConfigUtils: true }))
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export default withNuxt
|
package/.nuxt/imports.d.ts
DELETED
|
@@ -1,34 +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 } 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, mergeModels, 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 { useLoggly, LogLevel } from '../app/composables/useLoggly';
|
|
32
|
-
export { useI18n } from '../node_modules/vue-i18n/dist/vue-i18n';
|
|
33
|
-
export { useRouteBaseName, useLocalePath, useLocaleRoute, useSwitchLocalePath, useLocaleHead, useBrowserLocale, useCookieLocale, useSetI18nParams, useI18nPreloadKeys, defineI18nRoute, defineI18nLocale, defineI18nConfig } from '../node_modules/@nuxtjs/i18n/dist/runtime/composables/index';
|
|
34
|
-
export { useNuxtDevTools } from '../node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"id":"dev","timestamp":1755123298825}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"id":"dev","timestamp":1755123298825,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
|
package/.nuxt/nitro.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"date": "2025-08-13T22:15:00.091Z",
|
|
3
|
-
"preset": "nitro-dev",
|
|
4
|
-
"framework": {
|
|
5
|
-
"name": "nuxt",
|
|
6
|
-
"version": "4.0.3"
|
|
7
|
-
},
|
|
8
|
-
"versions": {
|
|
9
|
-
"nitro": "2.12.4"
|
|
10
|
-
},
|
|
11
|
-
"dev": {
|
|
12
|
-
"pid": 54201,
|
|
13
|
-
"workerAddress": {
|
|
14
|
-
"socketPath": "\u0000nitro-worker-54201-2-2-4865.sock"
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
package/.nuxt/nuxt.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/// <reference types="@nuxt/eslint" />
|
|
2
|
-
/// <reference types="@nuxtjs/i18n" />
|
|
3
|
-
/// <reference types="@nuxt/devtools" />
|
|
4
|
-
/// <reference types="@nuxt/telemetry" />
|
|
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="types/i18n-plugin.d.ts" />
|
|
12
|
-
/// <reference path="types/middleware.d.ts" />
|
|
13
|
-
/// <reference path="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
|
-
/// <reference path="./eslint-typegen.d.ts" />
|
|
19
|
-
|
|
20
|
-
export {}
|
package/.nuxt/nuxt.json
DELETED
package/.nuxt/nuxt.node.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/// <reference types="@nuxt/eslint" />
|
|
2
|
-
/// <reference types="@nuxtjs/i18n" />
|
|
3
|
-
/// <reference types="@nuxt/devtools" />
|
|
4
|
-
/// <reference types="@nuxt/telemetry" />
|
|
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="eslint-typegen.d.ts" />
|
|
10
|
-
/// <reference path="types/middleware.d.ts" />
|
|
11
|
-
/// <reference path="schema/nuxt.schema.d.ts" />
|
|
12
|
-
|
|
13
|
-
export {}
|
package/.nuxt/nuxt.shared.d.ts
DELETED
|
@@ -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
|
-
}
|
package/.nuxt/tsconfig.app.json
DELETED
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"paths": {
|
|
4
|
-
"nitropack/types": [
|
|
5
|
-
"../node_modules/nitropack/types"
|
|
6
|
-
],
|
|
7
|
-
"nitropack/runtime": [
|
|
8
|
-
"../node_modules/nitropack/runtime"
|
|
9
|
-
],
|
|
10
|
-
"nitropack": [
|
|
11
|
-
"../node_modules/nitropack"
|
|
12
|
-
],
|
|
13
|
-
"defu": [
|
|
14
|
-
"../node_modules/defu"
|
|
15
|
-
],
|
|
16
|
-
"h3": [
|
|
17
|
-
"../node_modules/h3"
|
|
18
|
-
],
|
|
19
|
-
"consola": [
|
|
20
|
-
"../node_modules/consola"
|
|
21
|
-
],
|
|
22
|
-
"ofetch": [
|
|
23
|
-
"../node_modules/ofetch"
|
|
24
|
-
],
|
|
25
|
-
"@unhead/vue": [
|
|
26
|
-
"../node_modules/@unhead/vue"
|
|
27
|
-
],
|
|
28
|
-
"@nuxt/devtools": [
|
|
29
|
-
"../node_modules/@nuxt/devtools"
|
|
30
|
-
],
|
|
31
|
-
"vue": [
|
|
32
|
-
"../node_modules/vue"
|
|
33
|
-
],
|
|
34
|
-
"@vue/runtime-core": [
|
|
35
|
-
"../node_modules/@vue/runtime-core"
|
|
36
|
-
],
|
|
37
|
-
"@vue/compiler-sfc": [
|
|
38
|
-
"../node_modules/@vue/compiler-sfc"
|
|
39
|
-
],
|
|
40
|
-
"vue-router": [
|
|
41
|
-
"../node_modules/vue-router"
|
|
42
|
-
],
|
|
43
|
-
"vue-router/auto-routes": [
|
|
44
|
-
"../node_modules/vue-router/vue-router-auto-routes"
|
|
45
|
-
],
|
|
46
|
-
"unplugin-vue-router/client": [
|
|
47
|
-
"../node_modules/unplugin-vue-router/client"
|
|
48
|
-
],
|
|
49
|
-
"@nuxt/schema": [
|
|
50
|
-
"../node_modules/@nuxt/schema"
|
|
51
|
-
],
|
|
52
|
-
"nuxt": [
|
|
53
|
-
"../node_modules/nuxt"
|
|
54
|
-
],
|
|
55
|
-
"vite/client": [
|
|
56
|
-
"../node_modules/vite/client"
|
|
57
|
-
],
|
|
58
|
-
"vue-i18n": [
|
|
59
|
-
"../node_modules/vue-i18n/dist/vue-i18n",
|
|
60
|
-
"../node_modules/vue-i18n"
|
|
61
|
-
],
|
|
62
|
-
"@intlify/shared": [
|
|
63
|
-
"../node_modules/@intlify/shared/dist/shared",
|
|
64
|
-
"../node_modules/@intlify/shared"
|
|
65
|
-
],
|
|
66
|
-
"@intlify/message-compiler": [
|
|
67
|
-
"../node_modules/@intlify/message-compiler/dist/message-compiler",
|
|
68
|
-
"../node_modules/@intlify/message-compiler"
|
|
69
|
-
],
|
|
70
|
-
"@intlify/core-base": [
|
|
71
|
-
"../node_modules/@intlify/core-base/dist/core-base",
|
|
72
|
-
"../node_modules/@intlify/core-base"
|
|
73
|
-
],
|
|
74
|
-
"@intlify/core": [
|
|
75
|
-
"../node_modules/@intlify/core/dist/core.node",
|
|
76
|
-
"../node_modules/@intlify/core"
|
|
77
|
-
],
|
|
78
|
-
"@intlify/utils/h3": [
|
|
79
|
-
"../node_modules/@intlify/utils/dist/h3",
|
|
80
|
-
"../node_modules/@intlify/utils"
|
|
81
|
-
],
|
|
82
|
-
"ufo": [
|
|
83
|
-
"../node_modules/ufo/dist/index",
|
|
84
|
-
"../node_modules/ufo"
|
|
85
|
-
],
|
|
86
|
-
"~": [
|
|
87
|
-
"../app"
|
|
88
|
-
],
|
|
89
|
-
"~/*": [
|
|
90
|
-
"../app/*"
|
|
91
|
-
],
|
|
92
|
-
"@": [
|
|
93
|
-
"../app"
|
|
94
|
-
],
|
|
95
|
-
"@/*": [
|
|
96
|
-
"../app/*"
|
|
97
|
-
],
|
|
98
|
-
"~~": [
|
|
99
|
-
".."
|
|
100
|
-
],
|
|
101
|
-
"~~/*": [
|
|
102
|
-
"../*"
|
|
103
|
-
],
|
|
104
|
-
"@@": [
|
|
105
|
-
".."
|
|
106
|
-
],
|
|
107
|
-
"@@/*": [
|
|
108
|
-
"../*"
|
|
109
|
-
],
|
|
110
|
-
"#shared": [
|
|
111
|
-
"../shared"
|
|
112
|
-
],
|
|
113
|
-
"#shared/*": [
|
|
114
|
-
"../shared/*"
|
|
115
|
-
],
|
|
116
|
-
"#app": [
|
|
117
|
-
"../node_modules/nuxt/dist/app"
|
|
118
|
-
],
|
|
119
|
-
"#app/*": [
|
|
120
|
-
"../node_modules/nuxt/dist/app/*"
|
|
121
|
-
],
|
|
122
|
-
"vue-demi": [
|
|
123
|
-
"../node_modules/nuxt/dist/app/compat/vue-demi"
|
|
124
|
-
],
|
|
125
|
-
"#i18n": [
|
|
126
|
-
"../node_modules/@nuxtjs/i18n/dist/runtime/composables/index"
|
|
127
|
-
],
|
|
128
|
-
"#i18n-kit": [
|
|
129
|
-
"../node_modules/@nuxtjs/i18n/dist/runtime/kit"
|
|
130
|
-
],
|
|
131
|
-
"#i18n-kit/*": [
|
|
132
|
-
"../node_modules/@nuxtjs/i18n/dist/runtime/kit/*"
|
|
133
|
-
],
|
|
134
|
-
"#internal-i18n-types": [
|
|
135
|
-
"../node_modules/@nuxtjs/i18n/dist/types"
|
|
136
|
-
],
|
|
137
|
-
"#vue-router": [
|
|
138
|
-
"../node_modules/vue-router"
|
|
139
|
-
],
|
|
140
|
-
"#unhead/composables": [
|
|
141
|
-
"../node_modules/nuxt/dist/head/runtime/composables"
|
|
142
|
-
],
|
|
143
|
-
"#imports": [
|
|
144
|
-
"./imports"
|
|
145
|
-
],
|
|
146
|
-
"#app-manifest": [
|
|
147
|
-
"./manifest/meta/dev.json"
|
|
148
|
-
],
|
|
149
|
-
"#components": [
|
|
150
|
-
"./components"
|
|
151
|
-
],
|
|
152
|
-
"#build": [
|
|
153
|
-
"."
|
|
154
|
-
],
|
|
155
|
-
"#build/*": [
|
|
156
|
-
"./*"
|
|
157
|
-
]
|
|
158
|
-
},
|
|
159
|
-
"esModuleInterop": true,
|
|
160
|
-
"skipLibCheck": true,
|
|
161
|
-
"target": "ESNext",
|
|
162
|
-
"allowJs": true,
|
|
163
|
-
"resolveJsonModule": true,
|
|
164
|
-
"moduleDetection": "force",
|
|
165
|
-
"isolatedModules": true,
|
|
166
|
-
"verbatimModuleSyntax": true,
|
|
167
|
-
"strict": true,
|
|
168
|
-
"noUncheckedIndexedAccess": true,
|
|
169
|
-
"forceConsistentCasingInFileNames": true,
|
|
170
|
-
"noImplicitOverride": true,
|
|
171
|
-
"module": "preserve",
|
|
172
|
-
"noEmit": true,
|
|
173
|
-
"lib": [
|
|
174
|
-
"ESNext",
|
|
175
|
-
"dom",
|
|
176
|
-
"dom.iterable",
|
|
177
|
-
"webworker"
|
|
178
|
-
],
|
|
179
|
-
"jsx": "preserve",
|
|
180
|
-
"jsxImportSource": "vue",
|
|
181
|
-
"types": [],
|
|
182
|
-
"moduleResolution": "Bundler",
|
|
183
|
-
"useDefineForClassFields": true,
|
|
184
|
-
"noImplicitThis": true,
|
|
185
|
-
"allowSyntheticDefaultImports": true
|
|
186
|
-
},
|
|
187
|
-
"include": [
|
|
188
|
-
"../i18n/**/*",
|
|
189
|
-
"./nuxt.d.ts",
|
|
190
|
-
"../app/**/*",
|
|
191
|
-
"../modules/*/runtime/**/*",
|
|
192
|
-
"../layers/*/app/**/*",
|
|
193
|
-
"../layers/*/modules/*/runtime/**/*",
|
|
194
|
-
"../shared/**/*.d.ts",
|
|
195
|
-
"../modules/*/shared/**/*.d.ts",
|
|
196
|
-
"../layers/*/shared/**/*.d.ts",
|
|
197
|
-
"../*.d.ts",
|
|
198
|
-
"../layers/*/*.d.ts"
|
|
199
|
-
],
|
|
200
|
-
"exclude": [
|
|
201
|
-
"../node_modules",
|
|
202
|
-
"../../../node_modules",
|
|
203
|
-
"../node_modules/nuxt/node_modules",
|
|
204
|
-
"../node_modules/@nuxt/eslint/node_modules",
|
|
205
|
-
"../node_modules/@nuxtjs/i18n/node_modules",
|
|
206
|
-
"../node_modules/@nuxt/devtools/node_modules",
|
|
207
|
-
"../node_modules/@nuxt/telemetry/node_modules",
|
|
208
|
-
"../dist",
|
|
209
|
-
"../.data",
|
|
210
|
-
"../modules/*/runtime/server/**/*",
|
|
211
|
-
"../layers/*/server/**/*",
|
|
212
|
-
"../layers/*/modules/*/runtime/server/**/*",
|
|
213
|
-
"../modules/*.*",
|
|
214
|
-
"../nuxt.config.*",
|
|
215
|
-
"../.config/nuxt.*",
|
|
216
|
-
"../layers/*/nuxt.config.*",
|
|
217
|
-
"../layers/*/.config/nuxt.*",
|
|
218
|
-
"../layers/*/modules/**/*",
|
|
219
|
-
"../node_modules/runtime/server",
|
|
220
|
-
"../node_modules/dist/runtime/server",
|
|
221
|
-
"../node_modules/*.*",
|
|
222
|
-
"../node_modules/dist/*.*",
|
|
223
|
-
"dev",
|
|
224
|
-
"../server"
|
|
225
|
-
]
|
|
226
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["./nuxt.d.ts","../app/composables/useLoggly.ts","../app/plugins/loggly.client.ts"],"version":"5.8.3"}
|