mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +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 = {
|
export const pluginsDeclaration: NuxtTemplate = {
|
||||||
filename: 'types/plugins.d.ts',
|
filename: 'types/plugins.d.ts',
|
||||||
getContents: async ({ nuxt, app }) => {
|
getContents: async ({ nuxt, app }) => {
|
||||||
@ -124,9 +126,14 @@ export const pluginsDeclaration: NuxtTemplate = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (exists(pluginPath)) {
|
if (exists(pluginPath)) {
|
||||||
tsImports.push(relativePath.replace(EXTENSION_RE, ''))
|
if (TS_RE.test(pluginPath)) {
|
||||||
continue
|
tsImports.push(relativePath.replace(EXTENSION_RE, ''))
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
tsImports.push(relativePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// No declaration found that TypeScript can use
|
||||||
}
|
}
|
||||||
|
|
||||||
return `// Generated by Nuxt'
|
return `// Generated by Nuxt'
|
||||||
|
Loading…
Reference in New Issue
Block a user