Improve typing of javascript code.

We now enable typing of sfu.js.
This commit is contained in:
Juliusz Chroboczek
2020-09-20 14:33:13 +02:00
parent 4e14c29fbb
commit 0aa77441bd
3 changed files with 266 additions and 118 deletions
+8 -2
View File
@@ -4,10 +4,16 @@
"allowJs": true,
"checkJs": true,
"declaration": true,
"noImplicitThis": true,
"emitDeclarationOnly": true,
"strictBindCallApply": true
"strictFunctionTypes": true,
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true
},
"files": [
"protocol.js"
"protocol.js",
"sfu.js"
]
}