How to exclude node_modules from buildin VS Code CSS linter

273 Views Asked by At

VS Code reports CSS linter warning from files in node_modules. How can I disable checks in node_modules? This is my jsconfig.json file (if it matters):

{
  "compilerOptions": {
    "target": "ES6",
    "module": "commonjs"
  },
  "exclude": [
    "node_modules"
  ],
  "include": [
  ]
}
0

There are 0 best solutions below