Docs/Programming Languages/jsconfig.json

jsconfig.json

jsconfig.json marks a directory as the root of a JavaScript project and configures the language service.

Example

{   "compilerOptions": {     "module": "commonjs",     "target": "es6"   },   "exclude": ["node_modules"] }