From cd59216c2a46e64116bdedb664ce20249624b89d Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Fri, 17 Jul 2020 14:05:33 +0800 Subject: [PATCH] Fixed TsconfigPathsPlugin config path in Readme (#1081) Co-authored-by: John Reilly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a139f7f7c..c27bfd409 100644 --- a/README.md +++ b/README.md @@ -250,7 +250,7 @@ const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); module.exports = { ... resolve: { - plugins: [new TsconfigPathsPlugin({ /*configFile: "./path/to/tsconfig.json" */ })] + plugins: [new TsconfigPathsPlugin({ configFile: "./path/to/tsconfig.json" })] } ... }