Skip to content

Commit

Permalink
Add use node_modules glob
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Jul 25, 2017
1 parent 9bbf4d7 commit 4834f95
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions docs/languages/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ Below is a simple template for `jsconfig.json` file which defines the JavaScript
"target": "ES6"
},
"exclude": [
"node_modules"
"node_modules",
"**/node_modules/*"
]
}
```
Expand Down Expand Up @@ -189,7 +190,8 @@ To enable type checking for JavaScript files that are part of a `jsconfig.json`
"checkJs": true
},
"exclude": [
"node_modules"
"node_modules",
"**/node_modules/*"
]
}
```
Expand All @@ -203,7 +205,8 @@ To enable type checking for JavaScript files that are part of a `jsconfig.json`
"checkJs": true
},
"exclude": [
"node_modules"
"node_modules",
"**/node_modules/*"
]
}
```
Expand Down Expand Up @@ -240,7 +243,8 @@ To start, [create a `jsconfig.json`](#_javascript-project-jsconfigjson) at the r
{
"compilerOptions": { },
"exclude": [
"node_modules"
"node_modules",
"**/node_modules/*"
]
}
```
Expand Down Expand Up @@ -435,7 +439,8 @@ When you want to use ES6 style imports but some type declaration (typings) files
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules"
"node_modules",
"**/node_modules/*"
]
}
```
Expand Down

0 comments on commit 4834f95

Please sign in to comment.