Files
DefinitelyTyped/types/d3-dsv/tsconfig.json
Tom Wanzek 6c64ddc3c8 d3-dsv
* [DOC] Add complete JSDoc comments. Related to #11366.
* [CHORE] Activate `strictNullChecks` in `tsconfig.json`
* [CHORE] Change `row` mapping function return type to be valid with `strictNullChecks`. Amended tests.
* [CHORE] Added comment to track latest patch version of d3-dsv source package against which definitions were validated.
2017-10-31 18:56:29 -04:00

24 lines
487 B
JSON

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