Created
March 16, 2020 02:59
-
-
Save enqtran/566d55f9529241863d8b56275c55afe2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install dev | |
babel-plugin-module-resolver | |
# create file .babelrc.js | |
const plugins = [ | |
[ | |
require.resolve('babel-plugin-module-resolver'), | |
{ | |
root: ["./src/"] | |
} | |
] | |
]; | |
# create file jsconfig.json | |
{ | |
"compilerOptions": { | |
"jsx": "react", | |
"baseUrl": "src", | |
"paths": { | |
"actions": ["./actions"], | |
"utils": ["./utils"], | |
"types": ["./types"], | |
"config": ["./config"], | |
"components": ["./components/*"] | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment