From 71cdea320dc992bb4570362ecab9b458908a4a6e Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Wed, 28 Dec 2016 14:06:07 -0800 Subject: [PATCH] Fix test failures --- arcgis-rest-api/tsconfig.json | 1 + arcgis-to-geojson-utils/tsconfig.json | 1 + chai-json-schema/tsconfig.json | 1 + datatables.net-fixedheader/tsconfig.json | 1 + datatables.net-select/tsconfig.json | 1 + html-webpack-plugin/index.d.ts | 3 ++- is-windows/tsconfig.json | 1 + rx/tslint.json | 1 + 8 files changed, 9 insertions(+), 1 deletion(-) diff --git a/arcgis-rest-api/tsconfig.json b/arcgis-rest-api/tsconfig.json index ac74de6345..7e070948a8 100644 --- a/arcgis-rest-api/tsconfig.json +++ b/arcgis-rest-api/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ diff --git a/arcgis-to-geojson-utils/tsconfig.json b/arcgis-to-geojson-utils/tsconfig.json index 2ef6376fee..bab5e43e48 100644 --- a/arcgis-to-geojson-utils/tsconfig.json +++ b/arcgis-to-geojson-utils/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ diff --git a/chai-json-schema/tsconfig.json b/chai-json-schema/tsconfig.json index 1ac8b87c7a..e61b9daa61 100644 --- a/chai-json-schema/tsconfig.json +++ b/chai-json-schema/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ diff --git a/datatables.net-fixedheader/tsconfig.json b/datatables.net-fixedheader/tsconfig.json index 0cbc559ca2..d3fb0489c7 100644 --- a/datatables.net-fixedheader/tsconfig.json +++ b/datatables.net-fixedheader/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ diff --git a/datatables.net-select/tsconfig.json b/datatables.net-select/tsconfig.json index e31ad091c8..a4bcd655c6 100644 --- a/datatables.net-select/tsconfig.json +++ b/datatables.net-select/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ diff --git a/html-webpack-plugin/index.d.ts b/html-webpack-plugin/index.d.ts index c3dd776fef..f34d46c8c2 100644 --- a/html-webpack-plugin/index.d.ts +++ b/html-webpack-plugin/index.d.ts @@ -3,13 +3,14 @@ // Definitions by: Simon Hartcher , Benjamin Lim // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -import { Plugin } from "webpack"; +import { Plugin, Webpack } from "webpack"; import { Options } from "html-minifier"; export = HtmlWebpackPlugin; declare class HtmlWebpackPlugin implements Plugin { constructor(options?: HtmlWebpackPlugin.Config); + apply(thisArg: Webpack, ...args: any[]): void; } declare namespace HtmlWebpackPlugin { diff --git a/is-windows/tsconfig.json b/is-windows/tsconfig.json index de9fd876dd..9bac7c08a8 100644 --- a/is-windows/tsconfig.json +++ b/is-windows/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ diff --git a/rx/tslint.json b/rx/tslint.json index b4ab104e28..ece70de3a1 100644 --- a/rx/tslint.json +++ b/rx/tslint.json @@ -5,6 +5,7 @@ false ], "dt-header": false, + "interface-name": false, "no-empty-interface": false, "unified-signatures": false, "no-single-declare-module": false