DefinitelyTyped/dc/tsconfig.json
Andy 728bd4841d Remove package.json dependencies for @types/d3 when we can use path mapping instead. (#14102)
* And remove d3's `package.json` since it depends on the latest versions of its components.
2017-01-18 14:45:40 -08:00

26 lines
523 B
JSON

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