Files
DefinitelyTyped/types/json-rpc-ws/tsconfig.json
Nicolas Penin 0a51536fcb added json-rpc-ws type definition (#17881)
* added json-rpc-ws type definition

* added json-rpc-ws type definition

* removed contributors from package.json

* removed script section as requested by Travis CI

* removed deprecasted information

* removed description

* removed license

* removed main

* removed name

* removed typings

* removed typescript version

* removed version

* emptied package.json

* Update tsconfig.json

* Update tsconfig.json

* Update tsconfig.json

* Update tsconfig.json

* Update package.json

* updated dependencies

* removed package.json updated reference

* changes made according to @andy-ms suggestions

* first fixes for tslint

* tslint update

* applied changes requested by @andy-ms

* used capitals
restored function names as agreed

* updated lint rule change

* updated header to use a newer typescript version
2017-07-26 07:06:15 -07:00

22 lines
454 B
JSON

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