Skip to content

Commit

Permalink
Removed .tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Korilakkuma committed Jun 11, 2018
1 parent a94b561 commit f41389d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ const baseConfig = {
mode: 'development',
entry: './src/hls.js',
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: [".ts", ".tsx", ".js"]
// Add `.ts` as a resolvable extension.
extensions: [".ts", ".js"]
},
module: {
rules: [
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{ test: /\.tsx?$/, loader: "ts-loader" }
// all files with a `.ts` extension will be handled by `ts-loader`
{ test: /\.ts?$/, loader: "ts-loader" }
]
}
};
Expand Down

0 comments on commit f41389d

Please sign in to comment.