How I can use absolute path from root and change root, for import components?
import Modal from project/app/src/Components/Modal
import Main from ../../../../Constants
and I want, change root directory to I can import from src
import Modal from Components/Modal
import Main from Constants
I try change workspaces in package.json
"workspaces": [
"project/app/src/*"
]
or use
"scripts": {
"start": "NODE_PATH=project/app/src/ webpack-dev-server"
}
but it's not working.