mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* Added initial declaration file for client * Added missing complex types function * Added initial module format definition * Re-factored types to export detailed interfaces * Fixed linting errors * Added test file for definitions * Added tslint comment for default export * Fixed options incorrectly being required * Added connect and disconnect methods for endpoints * Re-named connect argument to sink to match docs * Added media element interface to extend webrtc endpoint * Changed media element method to use strict element type * Added missing close method for main class * Refactored type structure to match commonjs
26 lines
547 B
JSON
26 lines
547 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"kurento-client-tests.ts"
|
|
]
|
|
}
|