diff --git a/examples/typescript/modules/typescript.js b/examples/typescript/modules/typescript.js index efa5413d97..ec98f8fd26 100644 --- a/examples/typescript/modules/typescript.js +++ b/examples/typescript/modules/typescript.js @@ -1,4 +1,4 @@ -module.exports = function (options, next) { +module.exports = function (options) { // Extend build this.extendBuild((config) => { // Add TypeScript loader @@ -13,6 +13,4 @@ module.exports = function (options, next) { } } }) - - next() }