DefinitelyTyped/types/strophe/tsconfig.json
Ilia Choly 1b814e5ba7 Add Strophe MUC definitions. (#16131)
* Add definitions for Strophe MUC

* Remove `wrapper` namespace

* Add tests for MUC

* Use classes with constructors instead of interfaces with new() method

* Add header

* Add CONNTIMEOUT status

* add keepalive bosh option

* Add restore method

* Re-Add support for AMD require to strophe
2017-06-01 09:25:26 -07:00

25 lines
491 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"muc.d.ts",
"strophe-tests.ts"
]
}