We have problem to run snowpack with our package structure.
Our structure:
adapters
app
core
presentation
Each package contains typescript and all are used in the app
package.
"dependencies": {
"@project/adapters": "file:../../adapters",
"@project/core": "file:../../core",
"@project/presentation": "file:../../presentation",
}
I get the error Dependency Install Error: Package "@project/adapters/src/repositories/GradeFeedRepositoryImpl" not found. Have you installed it?
How do I need to configure snowpack, web pack, babel, ... to run this?