We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I created webpack.config.js for my app based on https://github.com/dividab/tsconfig-paths-webpack-plugin/blob/master/example/webpack.config.js
I was getting build errors for TS files containing types information.
File
tsconfig-paths-webpack-plugin/example/webpack.config.js
Line 15 in 988a5c7
test: /\\.tsx?$/,
test: /\.tsx?$/
I changed double slash to single in my config. Build was succesful.
I suppose there is an error in the file, but it does not manifests up because the TS files in this example do not use types.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I created webpack.config.js for my app based on https://github.com/dividab/tsconfig-paths-webpack-plugin/blob/master/example/webpack.config.js
I was getting build errors for TS files containing types information.
File
tsconfig-paths-webpack-plugin/example/webpack.config.js
Line 15 in 988a5c7
test: /\\.tsx?$/,
but ts-loader documentation ( https://www.npmjs.com/package/ts-loader#configuration ) containstest: /\.tsx?$/
pattern (without double slash).I changed double slash to single in my config. Build was succesful.
I suppose there is an error in the file, but it does not manifests up because the TS files in this example do not use types.
The text was updated successfully, but these errors were encountered: