Skip to content

Instantly share code, notes, and snippets.

@enqtran
Created March 16, 2020 02:59
Show Gist options
  • Save enqtran/566d55f9529241863d8b56275c55afe2 to your computer and use it in GitHub Desktop.
Save enqtran/566d55f9529241863d8b56275c55afe2 to your computer and use it in GitHub Desktop.
# 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