DefinitelyTyped/d3.cloud.layout/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
536 B
JSON

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