Add "noImplicitThis" to all tsconfig.json (#13446)

* Add "noImplicitThis" to all tsconfig.json

* Use `"noImplicitThis": false` on packages with broken tests.
This commit is contained in:
Andy
2016-12-19 14:11:46 -08:00
committed by GitHub
parent 5ad6479868
commit a4bd9fa3c1
2688 changed files with 3646 additions and 975 deletions

View File

@@ -1,19 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"d3-array-tests.ts"
]
}
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"d3-array-tests.ts"
]
}