Files
DefinitelyTyped/types/rsocket-tcp-server/tsconfig.json
Adrian Hope-Bailie 91406b9242 rsocket - allow partial in clientconfig and add tests (#36733)
* Allow partial responder in ClientConfig

* add tests

* move tests into client and server packages

* Update TS version to 2.2
2019-07-08 16:07:35 -07:00

26 lines
551 B
JSON

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