Avoid any transpilation of node_modules

Change-type: patch
This commit is contained in:
Pagan Gazzard 2020-03-24 12:44:03 +00:00
parent 233cf4bfaa
commit 8fccc4a107
2 changed files with 2 additions and 1 deletions

View File

@ -6,5 +6,5 @@
"preserveConstEnums": true,
"removeComments": true
},
"include": ["src/**/*.ts", "typings/**/*.d.ts"]
"include": ["src/**/*.ts", "src/**/*.js", "typings/**/*.d.ts"]
}

View File

@ -102,6 +102,7 @@ module.exports = function(env) {
},
{
test: /\.ts$|\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',