-
I have a problem when I try to type yarn start. For some reason, it can't find the node module that is required to start my programm in the package.json:
This is the error Code:
My tsconfig.json looks like this:
from some reason it's not properly working either. Most of my files are in ts and js. Thanks in advance! This is the error message it gives me: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
How about this? |
Beta Was this translation helpful? Give feedback.
-
@PatrickAlphaC We need a hero! There isn't much online about this problem... Would appreciate it! Sitting for such a long time again on just one error. |
Beta Was this translation helpful? Give feedback.
-
I fixed the problem on my own. Yarn clean messed up my whole node_modules. It was stuck in the cache with some other missing files. After I created a completely new projects + manually put in the node modules again it worked perfectly. Thanks for the help @krakxn and @PatrickAlphaC The command in my package.json should have been only |
Beta Was this translation helpful? Give feedback.
I fixed the problem on my own. Yarn clean messed up my whole node_modules. It was stuck in the cache with some other missing files. After I created a completely new projects + manually put in the node modules again it worked perfectly. Thanks for the help @krakxn and @PatrickAlphaC
The command in my package.json should have been only
yarn compile
instead of"build": "yarn clean && yarn compile"