feat(vite): support resolving types from vfs

This commit is contained in:
Daniel Roe 2024-04-30 17:11:17 +01:00
parent ed79a1d4bf
commit 01193ea7cf
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B
1 changed files with 13 additions and 1 deletions

View File

@ -1,10 +1,12 @@
import { existsSync } from 'node:fs'
import { existsSync, readFileSync, realpathSync } from 'node:fs'
import * as vite from 'vite'
import { dirname, join, normalize, resolve } from 'pathe'
import type { Nuxt, NuxtBuilder, ViteConfig } from '@nuxt/schema'
import { addVitePlugin, isIgnored, logger, resolvePath } from '@nuxt/kit'
import replace from '@rollup/plugin-replace'
import type { Options as VuePluginOptions } from '@vitejs/plugin-vue'
import { sanitizeFilePath } from 'mlly'
import defu from 'defu'
import { withoutLeadingSlash } from 'ufo'
import { filename } from 'pathe/utils'
import { resolveTSConfig } from 'pkg-types'
@ -123,6 +125,16 @@ export const bundle: NuxtBuilder['bundle'] = async (nuxt) => {
),
}
ctx.config.vue = defu(ctx.config.vue, {
script: {
fs: {
fileExists: file => file in nuxt.vfs || existsSync(file),
readFile: file => nuxt.vfs[file] || readFileSync(file, 'utf-8'),
realpath: path => path in nuxt.vfs ? path : realpathSync(path),
},
},
} satisfies VuePluginOptions)
// In build mode we explicitly override any vite options that vite is relying on
// to detect whether to inject production or development code (such as HMR code)
if (!nuxt.options.dev) {