How to apply esbuild jsxImportSource file overwrite?
Hi, i have a unusual setup i am porting from another vue framework to nuxt.
custom jsx setup
The setup involves having certain files using different JSX transform options.
Certain files use a custom JSX runtime for performance reasons and this was previously solved using esbuild comment overwrites according to https://esbuild.github.io/api/#jsx
assets/custom/foobar.tsx
And as additional fallback a .babelrc file in the assets/custom ensures the same ruleset incase babel is used:
assets/custom/.babelrc
problem
However inside a nuxt project these overwrites seem to be ignored and vue/createVNode() is used no matter what.
Additionally i have tried:
- Excluding the assets/custom directory via
vite.vueJsx.exclude
inside nuxt.config.ts
- Adding a nested tsconfig inside assets/custom
- Forcing babel transpilation using build.transpile
However sadly to no avail.
Is anyone aware of a method to apply these JSX runtime overwrites per file?9 Replies
Hi @🐾Pow. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
Based on the knowledge sources, I can provide some insights into JSX handling in Nuxt, though there isn't a complete solution for your specific use case in the provided documents.
Nuxt supports JSX/TSX files by default, as indicated by the extensions configuration which includes
.jsx
and .tsx
Nuxt Configuration Extensions. There have been several improvements to JSX support in Nuxt, including fixes for scanning JSX pages for metadata and using the TSX loader for JSX files as well.
A relevant fix was implemented in Nuxt to pass the correct JSX configuration for esbuild-loader, which ported esbuild configuration from Vite to webpack:
This ports esbuild configuration to webpack from vite... Note that this does not enable support for auto-importing components used within JSX/TSX files in webpack; that is a separate issue. GitHub PR #27341However, the knowledge sources don't specifically address how to apply per-file JSX runtime overwrites using
jsxImportSource
comments in Nuxt.
You might be able to customize the JSX configuration through the Vite configuration in your nuxt.config.ts
file. Nuxt uses Vite by default, and you can configure it through the vite
key:
However, this would apply globally rather than per-file as you're looking for.
The knowledge sources don't contain specific information about supporting per-file JSX runtime overwrites with comment directives in Nuxt. This might require a custom plugin or configuration that's not covered in the provided documentation.
If you need to maintain this specific setup, you might need to:
1. Create a custom Vite plugin that handles the JSX transformation based on file comments
2. Explore using different file extensions for your custom JSX files and configure specific loaders for them
3. Consider reaching out to the Nuxt community or filing an issue on GitHub for more specific guidance
Unfortunately, the knowledge sources don't provide a complete solution for your specific use case of per-file JSX runtime overwrites in Nuxt.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@300276460386648075> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
@kapa.ai How could a minimal custom plugin to transpile files matching an include pattern with a custom jsx configuration?
Let me check the knowledge base for you again. One moment! :books:
----------------------
Based on the knowledge sources, I can help you create a minimal custom Vite plugin for Nuxt that would transpile specific files with a custom JSX configuration. This builds on our previous conversation about applying per-file JSX runtime overwrites.
You can create a custom Vite plugin and add it to your Nuxt project using the
addVitePlugin
function from @nuxt/kit
. Here's how you could implement it:
Then, in your nuxt.config.ts
file, you would register this plugin:
Alternatively, you can use the addVitePlugin
function directly in a Nuxt module:
This approach leverages Nuxt's integration with Vite plugins as documented in Nuxt Kit Builder and follows the pattern shown in the Using Vite Plugins in Nuxt guide.
Note that this is a simplified example and you might need to adjust it based on your specific requirements and the exact behavior of the JSX transformation you need.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@300276460386648075> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
@kapa.ai How would adding programmatic jsx transpilation using either esbuild or babel to this plugin work?
Let me check the knowledge base for you again. One moment! :books:
----------------------
Based on the knowledge sources and our previous conversation, I can provide guidance on adding programmatic JSX transpilation to your custom Vite plugin using either esbuild or babel. However, the knowledge sources don't contain complete details about this specific implementation, so I'll provide a conceptual approach based on what's available.
Adding Programmatic JSX Transpilation
To extend your custom plugin with programmatic JSX transpilation, you would need to:
Using esbuild for transpilation
Using babel for transpilation
Integration with Nuxt Configuration
To properly integrate this with your Nuxt project, you would need to:
1. Install the necessary dependencies:
- For esbuild:
npm install esbuild
- For babel: npm install @babel/core @babel/plugin-transform-react-jsx
2. Register your plugin in nuxt.config.ts
:
This approach leverages Nuxt's integration with Vite plugins as documented in Nuxt Kit Builder and follows the pattern shown in the Using Vite Plugins in Nuxt guide.
Note that this implementation is conceptual and might need adjustments based on your specific requirements and the exact behavior of the JSX transformation you need. The knowledge sources don't provide complete details about implementing custom JSX transpilation in Nuxt plugins.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@300276460386648075> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Update if anybody is reading this: Sadly for time reasons it was faster to convert all my jsx code by hand to manual function calls to my runtime