-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
pr05 Typescript Migration #16: Fix build error webpack example config #3696
New issue
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
Changes from all commits
c1086f6
f641212
5d8f4fd
46f5130
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ module.exports = [ | |
| module: { | ||
| rules: [ | ||
| { | ||
| test: /\.js$/, | ||
| test: /\.[jt]sx?$/, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. main change to solve the issue, screenshot in description was taken after just this change include tsx just in case? I updated the rest of the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks so much! This sounds good to me! If needed, we can follow up with any changes! |
||
| exclude: /node_modules/, | ||
| loader: 'babel-loader', | ||
| options: { | ||
|
|
@@ -52,7 +52,7 @@ module.exports = [ | |
| module: { | ||
| rules: [ | ||
| { | ||
| test: /\.[jt]s$/, | ||
| test: /\.[jt]sx?$/, | ||
| exclude: /node_modules/, | ||
| loader: 'babel-loader', | ||
| options: { | ||
|
|
@@ -82,7 +82,7 @@ module.exports = [ | |
| module: { | ||
| rules: [ | ||
| { | ||
| test: /\.[jt]s$/, | ||
| test: /\.[jt]sx?$/, | ||
| exclude: /node_modules/, | ||
| loader: 'babel-loader', | ||
| options: { | ||
|
|
||