mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 00:23:53 +00:00
fix(nuxt): avoid stripping js extensions in plugin injections (#28593)
This commit is contained in:
parent
4f9a3104bb
commit
b6d33506ab
@ -96,6 +96,8 @@ export const serverPluginTemplate: NuxtTemplate = {
|
||||
},
|
||||
}
|
||||
|
||||
const TS_RE = /\.[cm]?tsx?$/
|
||||
|
||||
export const pluginsDeclaration: NuxtTemplate = {
|
||||
filename: 'types/plugins.d.ts',
|
||||
getContents: async ({ nuxt, app }) => {
|
||||
@ -124,9 +126,14 @@ export const pluginsDeclaration: NuxtTemplate = {
|
||||
}
|
||||
|
||||
if (exists(pluginPath)) {
|
||||
if (TS_RE.test(pluginPath)) {
|
||||
tsImports.push(relativePath.replace(EXTENSION_RE, ''))
|
||||
continue
|
||||
}
|
||||
tsImports.push(relativePath)
|
||||
}
|
||||
|
||||
// No declaration found that TypeScript can use
|
||||
}
|
||||
|
||||
return `// Generated by Nuxt'
|
||||
|
Loading…
Reference in New Issue
Block a user