Frequently Asked QuestionsΒΆ
Docker container is failing due
ng: not found.If you are using
docker-compose, we use anonymous volume to avoid overwrittennode_modulesby the mounting of the host directory at runtime. The error that you are having is probably due user permission. Remove your localnode_modulesand letdocker-composecreate the one it will use.npm run lintfails dueCannot find module '@typescript-eslint/parser'.Because you have
node_modules, Node.js will look into it and fail due user permission. Useexport NODE_PATH=/usr/lib/node_modules
to skip the local
node_modules.