How to force tsc to ignore node_modules folder?

Quickfix is to skip the check

{
  "compilerOptions": {
    "skipLibCheck": true
  },
}

Leave a Comment