File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ exports = {
71
71
]
72
72
},
73
73
resolve: {
74
- fullySpecified: true ,
75
74
plugins: [new ResolveTypeScriptPlugin ()]
76
75
}
77
76
};
@@ -80,12 +79,12 @@ exports = {
80
79
You will also need to have [ ts-loader] [ 4 ] (or another TypeScript loader)
81
80
installed and configured.
82
81
83
- The ` resolve.fullySpecified ` option configures webpack to require file
84
- extensions except when importing external modules by name. This is consistent
85
- with node's implementation of ES Modules .
82
+ Previous versions of this README recommended setting ` resolve.fullySpecified ` to
83
+ ` true ` . This is no longer recommended because it breaks compatibility with
84
+ webpack-dev-server and possibly other webpack tooling .
86
85
87
- If you set ` resolve.fullySpecified ` you should also delete the
88
- ` resolve.extensions ` option, if any .
86
+ If you use this plugin, you should probably remove ` .ts ` and ` .tsx ` from
87
+ ` resolve.extensions ` .
89
88
90
89
## Options
91
90
You can’t perform that action at this time.
0 commit comments