DEV Community

Alexander Kim
Alexander Kim

Posted on

Setup path aliases w/ React + Vite + TS

Out of the box vite doesn't provide "@" path alias to src, so we have to manually setup it. I suppose you're using Vite preset for react-ts.

Steps to setup this:

Step 1

vite.config.ts:

// also don't forget to `npm i -D @types/node`, so __dirname won't complain
import * as path from 'path'

export default defineConfig({
  plugins: [react()],
  resolve: {
    alias: [{ find: '@', replacement: path.resolve(__dirname, 'src') }],
  },
})
Enter fullscreen mode Exit fullscreen mode

This would tell Vite about the alias.

Step 2

We're adding "@" alias for src directory (ts needs this).

tsconfig.json:

{
  "compilerOptions": {
    // ...rest of the template
    "types": ["node"],
    "paths": {
      "@/*": ["./src/*"]
    }
  },
  "include": ["src"],
  "references": [{ "path": "./tsconfig.node.json" }]
}
Enter fullscreen mode Exit fullscreen mode

Usage

import Comp from '@/components/Comp'
Enter fullscreen mode Exit fullscreen mode

Top comments (10)

Collapse
 
annaspies profile image
Anna

Does this work for nested paths? I'm trying to do something like this, and the nested folder isn't working for me:

{
  "compilerOptions": {
    "baseUrl": ".",
    ...
    "paths": {
      "*": ["src/*", "node_modules/*"],
      "components/*": ["src/components/*"],
      "containers/*": ["src/containers/*"],
      "pages/*": ["src/constants/*"],
      "store/*": ["src/store/*"],
      "types/*": ["src/types/*"],
      "NestedFolder/*": [
        "src/components/NestedFolder/*"
      ],
    }
  },
  "include": ["src/**/*", "*"]
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
shekhardtu profile image
Hari Shekhar

Hi @anna
For multiple aliases, you can follow this answer on stackoverflow.
stackoverflow.com/a/75201776/3144344

Collapse
 
jonastolentino profile image
Jonas Tolentino • Edited

Thank you very much...

but what if I want to use it in the pattern

import Container from '@components/Container'

how would the configuration look?

Collapse
 
gsoldateli profile image
Guilherme Soldateli

So helpful, thanks!

Collapse
 
kibobishtrudelz profile image
Petar Kolev

Wow, thanks a lot Alex! It sure did the work done <3

Collapse
 
mondal10 profile image
Amit Mondal • Edited

This really helped, Thanks

Collapse
 
thalesbruno profile image
Thales Bruno

Thanks for that ❤️

Collapse
 
iamsoprada profile image
IamSoPradaYou

Thank you so much! That really helped me, spent half of my day trying to resolve problems with using aliases.

Collapse
 
pjosxyz profile image
pjosxyz

Awesome, worked a charm :)

Collapse
 
rahmatdev profile image
Rahmat Sulistio

how we can add auto suggestions for VS Code?