This content originally appeared on DEV Community and was authored by Abdeldjalil Hachimi
today I am going to talk about How to use absolute Imports using React with Ts and Vite using react-ts with Vite
as you can see here I am using ...
to find the path of components in order to use them, it looks fine since I do not have deep path.
to sum up in order to avoid it you can easily use this in your
tsconfig.json
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"~/*": ["./*"]
},
}
and after that go to vite.config.ts
resolve: {
alias: {
'~': path.resolve(__dirname, 'src'),
},
},
and it's done
Thanks for reading this article and if you have any suggestions you are welcome
This content originally appeared on DEV Community and was authored by Abdeldjalil Hachimi
Abdeldjalil Hachimi | Sciencx (2022-02-04T16:54:46+00:00) How to use absolute Imports using React with Ts and Vite. Retrieved from https://www.scien.cx/2022/02/04/how-to-use-absolute-imports-using-react-with-ts-and-vite/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.