mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-18 12:08:59 +08:00
* [fix](d3-format) * Add apostrophe to permissible thousands separators to accomodate e.g. Switzerland, Liechtenstein * [chore](d3) Pin down versions * Added package.json to pin down the minor versions of the D3 modules forming part of the standard bundle * The pinned major.minor versions correspond to D3 v4.2 of the standard bundle (patches are not pinnable, major version is too coarse) * Changes tsconfig.json to used pinned dependencies * Fixed tsconfig.json: * Needed to leave type-resolution related options in the tsconfig.json. So that d3-test can find the d3 definition itself. * packages in dependency are still used to pin down D3 modules
21 lines
429 B
JSON
21 lines
429 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": false,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"d3-tests.ts"
|
|
]
|
|
}
|