DefinitelyTyped/array-find-index/tsconfig.json
Andy cc92639a4e array-find-index: Provide this type (#13452)
* array-find-index: Provide `this` type

* Also turn on --strictNullChecks
2016-12-20 07:51:06 -08:00

20 lines
438 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"array-find-index-tests.ts"
]
}