add typings for "node-ipc" package (#16070)

* add typings for node-ipc package

* fix tslint error
This commit is contained in:
Alexandro Libertino
2017-04-24 22:06:53 +07:00
committed by Andy
parent f67e0a4703
commit 24b56d44ab
4 changed files with 414 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"node-ipc-tests.ts"
]
}