aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-22 20:16:21 +0900
committerGitHub <noreply@github.com>2019-05-22 20:16:21 +0900
commitc1f64927b63d18048790abd3ba907083dbca3084 (patch)
tree3a64b677763f62094c49527d8182f8756a52fbd1 /webpack.config.js
parentced89134e32d793d8e091113cfb20867e1c3b572 (diff)
parent7be8bc71784b8dedd0fee03dd72dd8936e2f3929 (diff)
Merge pull request #588 from ueokande/tsyringe
Use tsyringe for DI container
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/webpack.config.js b/webpack.config.js
index a845375..1cd05df 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -17,19 +17,20 @@ config = {
filename: '[name].js'
},
+ optimization: {
+ minimize: false
+ },
+
+ performance: {
+ hints: false
+ },
+
module: {
rules: [
{
- test: [ /\.js$/, /\.jsx$/, /\.ts$/, /\.tsx$/],
+ test: [ /\.ts$/, /\.tsx$/],
exclude: /node_modules/,
- loader: 'babel-loader',
- options: {
- presets: [
- { plugins: ['@babel/plugin-proposal-class-properties'] },
- '@babel/react',
- '@babel/preset-typescript'
- ]
- },
+ loader: 'ts-loader'
},
{
test: /\.css$/,