DefinitelyTyped/types/d3-quadtree/tsconfig.json
denisname c1b7e33e7f d3-quadtree: JsDoc, strictNullChecks and TS 2.3 (#27648)
* Add JsDoc and use default generics

* Activate strictNullChecks and use ExpectError

* Fix most linting

trailing whitespace
TypeScript Version: 2.3

* Fix void-return

* Add length property to internal and leaf nodes
2018-08-06 11:33:00 -07:00

24 lines
510 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"d3-quadtree-tests.ts"
]
}