jonataslaw / poprize-plugin-vite

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@poprize/plugin-vite npm

Speed up your Vite dev server with SWC

Installation

yarn @poprize/plugin-vite --dev

Usage

import { defineConfig } from "vite";
import react from "@poprize/plugin-vite";

export default defineConfig({
  plugins: [react()],
});

Caveats

This plugin is only used in development and aims to be kept simple to enable good performances and be transpiler agnostic. Here is the list of non-configurable options that impact runtime behaviour:

  • useDefineForClassFields is always activated, as this matches the current ECMAScript spec
  • jsx runtime is always automatic
  • In development:
    • esbuild is disabled, so the esbuild configuration has no effect
    • target is es2020
    • JS files are not transformed
    • tsconfig is not resolved, so properties other than the ones listed above behaves like TS defaults

Changing the JSX import source

You can use the jsxImportSource option like this:

import { defineConfig } from "vite";
import react from "@poprize/plugin-vite";

export default defineConfig({
  plugins: [react({ jsxImportSource: "@emotion/react" })],
});

Consistent components exports

For React refresh to work correctly, your file should only export React components. The best explanation I've read is the one from the Gatsby docs.

If an incompatible change in exports is found, the module will be invalidated and HMR will propagate. To make it easier to export simple constants alongside your component, the module is only invalidated when their value changes.

You can catch mistakes and get more detailed warning with this eslint rule.

Migrating from vite-plugin-swc-react-refresh

The documentation for the previous version of the plugin is available in the v2 branch

To migrate, see this changelog

About

License:MIT License


Languages

Language:JavaScript 71.2%Language:TypeScript 28.8%