Skip to content

Commit

Permalink
Fix #18
Browse files Browse the repository at this point in the history
  • Loading branch information
nemchik committed Apr 20, 2021
1 parent 69d135e commit cc783e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ exports = module.exports = (options) => ({
module: {
rules: [
{
// .ts, .tsx, .d.ts
test: /\.(tsx?|d.ts)$/,
// .ts, .tsx
test: /\.tsx?$/,
use: [
{
// enable file based cache
Expand Down
4 changes: 2 additions & 2 deletions packages/ts-config-webpack-plugin/config/production.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ exports = module.exports = (options) => ({
module: {
rules: [
{
// .ts, .tsx, .d.ts
test: /\.(tsx?|d.ts)$/,
// .ts, .tsx
test: /\.tsx?$/,
use: [
{
// enable file based cache
Expand Down

0 comments on commit cc783e1

Please sign in to comment.