mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-01 11:39:28 +08:00
* [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.
24 lines
487 B
JSON
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"
|
|
]
|
|
}
|