From db1ae2441a509402437213a2a9930e5ab6a3ab1c Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Wed, 18 Jan 2017 07:57:12 -0800 Subject: [PATCH] Use "lib" instead of "target" for DefinitelyTyped tsconfig --- lib/definitely-typed.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/definitely-typed.ts b/lib/definitely-typed.ts index 413b1a2..0ea7e96 100644 --- a/lib/definitely-typed.ts +++ b/lib/definitely-typed.ts @@ -62,7 +62,9 @@ function getTSConfig(packageName: string): {} { return { "compilerOptions": { "module": "commonjs", - "target": "es6", + "lib": [ + "es6" + ], "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": true,