mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Initial commit * Began defining functions * Added top level exported function, options interface and Graphviz object interface * Added more definitions * Added dom lib * Added more definitions * Updated config * Added required TS version * Updated some parameters to be optional * Updated definitions per API * Fixed selection extension methods * Added module declaration * Formatting * Updated names * Re-ordered to match the API with sections * Added Engine type * Added TypeNames type * Added KeyMode type * Added more definitions and comments * Updated to use generics matching other d3 libraries * Updated arrays to be fixed size * Added documentation * Updated return type * Added some tests * Made parameter optional * Updated DOT attributes * Updated callbacks * Linting fixes * Removed unnecessary generics * Updated callbacks
25 lines
511 B
JSON
25 lines
511 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"d3-graphviz-tests.ts"
|
|
]
|
|
}
|