added a telnet client - fixes #760

This commit is contained in:
Eugene Pankov
2021-07-04 16:48:48 +02:00
parent 59de67ca58
commit 827345d899
33 changed files with 591 additions and 70 deletions

View File

@@ -0,0 +1,15 @@
{
"extends": "../tsconfig.json",
"exclude": ["node_modules", "dist", "typings"],
"include": ["src"],
"compilerOptions": {
"baseUrl": "src",
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./typings",
"paths": {
"tabby-*": ["../../tabby-*"],
"*": ["../../app/node_modules/*"]
}
}
}