From dbb8fd0fffe2e986df74e5f687e6b4f700f757f2 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 17 Jan 2017 16:47:19 +0100 Subject: [PATCH] add ES2015.iterable --- ts/mod02/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/mod02/index.ts b/ts/mod02/index.ts index f76a1ea..876c13f 100644 --- a/ts/mod02/index.ts +++ b/ts/mod02/index.ts @@ -25,7 +25,7 @@ let mocha = function (configArg: INpmtsConfig) { target: 'ES5', emitDecoratorMetadata: true, experimentalDecorators: true, - lib: ['ES2015.Promise','ES5','ES2015.Generator'] + lib: ['ES2015.Promise', 'ES5', 'ES2015.Generator', 'ES2015.Iterable'] }), plugins.gulpIstanbul({ }), @@ -50,7 +50,7 @@ let mocha = function (configArg: INpmtsConfig) { target: 'ES5', emitDecoratorMetadata: true, experimentalDecorators: true, - lib: ['ES2015.Promise','ES5','ES2015.Generator'] + lib: ['ES2015.Promise', 'ES5', 'ES2015.Generator', 'ES2015.Iterable'] }), plugins.gulpInjectModules(), plugins.gulpMocha(),