123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- {
- "compilerOptions": {
- "forceConsistentCasingInFileNames": true,
- "strict": true,
- "noEmit": true,
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "allowJs": true,
- "resolveJsonModule": true,
- "jsx": "preserve",
- "allowSyntheticDefaultImports": true,
- "jsxFactory": "h",
- "jsxFragmentFactory": "Fragment",
- "paths": {
- "#imports": [
- "./types/nitro-imports"
- ],
- "~/*": [
- "../*",
- "../*"
- ],
- "@/*": [
- "../*",
- "../*"
- ],
- "~~/*": [
- "../*",
- "../*"
- ],
- "@@/*": [
- "../*",
- "../*"
- ],
- "nitropack/types": [
- "../node_modules/nitropack/types"
- ],
- "nitropack/runtime": [
- "../node_modules/nitropack/runtime"
- ],
- "nitropack": [
- "../node_modules/nitropack"
- ],
- "defu": [
- "../node_modules/defu"
- ],
- "h3": [
- "../node_modules/h3"
- ],
- "consola": [
- "../node_modules/consola"
- ],
- "ofetch": [
- "../node_modules/ofetch"
- ],
- "@unhead/vue": [
- "../node_modules/@unhead/vue"
- ],
- "@nuxt/devtools": [
- "../node_modules/@nuxt/devtools"
- ],
- "@vue/runtime-core": [
- "../node_modules/@vue/runtime-core"
- ],
- "@vue/compiler-sfc": [
- "../node_modules/@vue/compiler-sfc"
- ],
- "unplugin-vue-router/client": [
- "../node_modules/unplugin-vue-router/client"
- ],
- "@nuxt/schema": [
- "../node_modules/@nuxt/schema"
- ],
- "nuxt": [
- "../node_modules/nuxt"
- ],
- "vite/client": [
- "../node_modules/vite/client"
- ],
- "~": [
- "./.."
- ],
- "@": [
- "./.."
- ],
- "~~": [
- "./.."
- ],
- "@@": [
- "./.."
- ],
- "#shared": [
- "../shared"
- ],
- "assets": [
- "../assets"
- ],
- "assets/*": [
- "../assets/*"
- ],
- "public": [
- "../public"
- ],
- "public/*": [
- "../public/*"
- ],
- "#build": [
- "./"
- ],
- "#build/*": [
- "./*"
- ],
- "#internal/nuxt/paths": [
- "../node_modules/nuxt/dist/core/runtime/nitro/paths"
- ],
- "#vue-router": [
- "./vue-router"
- ]
- },
- "lib": [
- "esnext",
- "webworker",
- "dom.iterable"
- ]
- },
- "include": [
- "./types/nitro-nuxt.d.ts",
- "../node_modules/@nuxt/devtools/runtime/server",
- "../node_modules/@nuxt/telemetry/runtime/server",
- "./types/nitro.d.ts",
- "../**/*",
- "../server/**/*"
- ],
- "exclude": [
- "../node_modules",
- "../node_modules/nuxt/node_modules",
- "../node_modules/@nuxt/devtools/node_modules",
- "../node_modules/@nuxt/telemetry/node_modules",
- "../dist"
- ]
- }
|