My project installation process is giving me some trouble. Initially, when I run npm install
, it successfully installs all the dependencies. However, when I proceed to execute npm run compile
, I encounter an error.
Below is the log file for a better understanding of the error:
0 info it worked if it ends with ok
1 verbose cli [ '/Users/roxhens/.nvm/versions/node/v10.13.0/bin/node',
1 verbose cli '/Users/roxhens/.nvm/versions/node/v10.13.0/bin/npm',
1 verbose cli 'run',
1 verbose cli 'build' ]
... (log continues)
In the project root directory, here is the package.json
:
{
"scripts": {
"lerna": "lerna",
"coveralls": "ts-jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
... (package.json details continue)