Files
DefinitelyTyped/types/tcp-ping/tsconfig.json
JUNG YONG WOO 2254f60b46 Add type definition for tcp-ping. (#20681)
* Add: Type definitions `tcp-ping`@`0.1.1`

* Remove: `strictFunctionTypes` property.

* Add: `tslint.json`

* Change: `strictNullChecks` property is set to true.

* Add: `strictFunctionTypes` property.

* Update: Apply the DTSLint rules.

* Update: Removed jsdoc comments information.

* Add: Tests

* Change: Missing file(`tcp-ping-tests.ts`) has been added to lsit of files.

* Change: Removes all unnecessary characters.

* Update: Add Tests.

* Update: `tcp-ping/index.d.ts`

* Update: Modified Results of Result type is Result(newly added)[].
2017-10-25 11:11:56 -07:00

24 lines
489 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",
"tcp-ping-tests.ts"
]
}