DefinitelyTyped/types/sc-broker/tsconfig.json
Daniel Rose b733a41816
Update scc-broker-client, socketcluster-client (#44659)
* [scc-broker-client] Fix type of input broker, restore old version

Put the functions of the broker into a new interface, to allow custom implementations.
Use the correct methods (previously had the old, pre-asyngular methods).
Restore the v6 of the package's definitions. They are used by sc-broker, for example.

* [socketcluster-client] Restore old version

Restore the v13 of the package's definitions. They are used by scc-broker-client v6, for example.
2020-05-19 10:59:48 -07:00

24 lines
490 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"sc-broker-tests.ts"
]
}