We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8803aee commit 721986eCopy full SHA for 721986e
README.md
@@ -87,6 +87,23 @@ with node's implementation of ES Modules.
87
If you set `resolve.fullySpecified` you should also delete the
88
`resolve.extensions` option, if any.
89
90
+## Options
91
+
92
+Pass options to the plugin as an argument to the constructor, as follows:
93
94
+```js
95
+new ResolveTypeScriptPlugin({
96
+ includeNodeModules: false
97
+});
98
+```
99
100
+### includeNodeModules
101
102
+By default, the plugin does not resolve TypeScript files inside `node_modules`
103
+subdirectories. To enable this, set `includeNodeModules: true`.
104
105
+Default: `false`.
106
107
## Feedback
108
109
We're seeking [community feedback][5] on this plugin.
0 commit comments