vite-jsconfig-paths
v2.0.1
Published
Vite resolver for JavaScript compilerOptions.paths
Downloads
126,573
Maintainers
Readme
vite-jsconfig-paths
Give vite
the ability to resolve imports using "jsconfig.json" path mapping.
Based on: vite-tsconfig-paths
Usage
Install as dev dependency
Inject
vite-jsconfig-paths
using thevite.config.js
moduleimport { defineConfig } from 'vite' import jsconfigPaths from 'vite-jsconfig-paths' export default defineConfig({ plugins: [jsconfigPaths()], })
Note: You need to restart Vite when you update your paths
mappings.
Options
root: string
The directory to crawl forjsconfig.json
files.
Defaults toviteConfig.root
projects: string[]
An array ofjsconfig.json
paths (relative toviteConfig.root
) and/or directories that contain ajsconfig.json
file.
This overrides theroot
option.extensions: string[]
File extensions to search for.
Defaults to.js | .jsx | .ts | .tsx | .mjs
baseUrl
If the baseUrl
is defined, it gets prepended to all bare imports, and its resolution will take precedence over node_modules. This is also how TypeScript does it.
Say the baseUrl
is ../root
and you import react
. This plugin will use ../root/react
if it exists. If not found, then react
is resolved normally. The baseUrl
is relative to the project root (where jsconfig.json
lives).
include/exclude
The include
and exclude
compiler options are respected.
Internally, globrex is used for glob matching.
Troubleshooting
The DEBUG
environment variable can be used to figure out why this plugin isn't working as you may have expected.
DEBUG=vite-jsconfig-paths yarn vite