Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Commit c27879b

Browse files
committed
Use correct tsconfig file for TsconfigPathsPlugin
1 parent 7e2a0be commit c27879b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-scripts/config/webpack.config.prod.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ module.exports = {
131131
// please link the files into your node_modules/ and let module-resolution kick in.
132132
// Make sure your source files are compiled, as they will not be processed in any way.
133133
new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]),
134-
new TsconfigPathsPlugin({ configFile: paths.appTsConfig }),
134+
new TsconfigPathsPlugin({ configFile: paths.appTsProdConfig }),
135135
],
136136
},
137137
module: {
@@ -183,7 +183,7 @@ module.exports = {
183183
options: {
184184
// disable type checker - we will use it in fork plugin
185185
transpileOnly: true,
186-
configFile: paths.appTsProdConfig
186+
configFile: paths.appTsProdConfig,
187187
},
188188
},
189189
],
@@ -333,7 +333,7 @@ module.exports = {
333333
// Enable file caching
334334
cache: true,
335335
sourceMap: shouldUseSourceMap,
336-
}), // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
336+
}), // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
337337
new ExtractTextPlugin({
338338
filename: cssFilename,
339339
}),

0 commit comments

Comments
 (0)