X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fconfig%2Fwebpack.dev.js;h=5e0f36d7f688532b16b632e1f13f31505083dfcc;hb=383bfc8356d444cbed1dab7e5c1b3bb16becfdfd;hp=1e975b26133a1df72c461911c33d1c8e451f6b64;hpb=a17bc2c34e79c144b7e71ff903c16c2e68371b48;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/config/webpack.dev.js b/client/config/webpack.dev.js index 1e975b261..5e0f36d7f 100644 --- a/client/config/webpack.dev.js +++ b/client/config/webpack.dev.js @@ -90,20 +90,24 @@ module.exports = function (env) { module: { - rules: [ - { - test: /\.ts$/, - use: [ - { - loader: 'tslint-loader', - options: { - configFile: 'tslint.json' - } - } - ], - exclude: [/\.(spec|e2e)\.ts$/] - } - ] + // Too slow, life is short + // rules: [ + // { + // test: /\.ts$/, + // use: [ + // { + // loader: 'tslint-loader', + // options: { + // configFile: 'tslint.json' + // } + // } + // ], + // exclude: [ + // /\.(spec|e2e)\.ts$/, + // /node_modules\// + // ] + // } + // ] }, plugins: [ @@ -199,6 +203,7 @@ module.exports = function (env) { tslint: { emitErrors: false, failOnHint: false, + typeCheck: true, resourcePath: 'src' },