integrating basic websocket

This commit is contained in:
Josh Burman
2019-02-28 17:49:46 -05:00
parent 9d4a09b8bd
commit b8282bf009
720 changed files with 1573910 additions and 18 deletions

16
tsconfig.json Executable file
View File

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./dist/server",
"strict": true,
"sourceMap": true,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"dist",
"node_modules"
]
}