mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-17 22:44:18 +08:00
* base (master) branch where all common changes start * base (master) branch where all common changes start * updated readme * updated readme * initial commit for cytoscape js * update version * added return types of void * container can be jQuery * container is not a jQuery but a get() works * added style properties * added style properties * allow remove on CollectionElements * added docs and algorithms * added layout typings * added layout intellisence and optional * added missing elements from the api, may be broken * incorporate CSS * Remove OS restrictions Previously, OS was restricted to only `linux`. However cytoscape.js does not appear to have any os restrictions defined in it's [`package.json`](https://github.com/cytoscape/cytoscape.js/blob/master/package.json). * updated to match cytoscape 3.x * updated version * missing setter fro style * target may not be present and type must be a string That type can only be one of the specified event types. * updated versions * updated for IDE * updated version to 0.0.1 * There is no known operating-system restriction. * not an angular project * type for cytoscapejs * fixing types half way * fix all travis errors and added some tests * use HTMLElement instead of any for container * add strictFunctionTypes
24 lines
508 B
JSON
24 lines
508 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",
|
|
"cytoscape-tests.ts"
|
|
]
|
|
} |