DefinitelyTyped/types/websocket-async/tsconfig.json
Ben O'Sullivan c3293bdfe3 Added typings for websocket-async (#27293)
* Added typings for websocket-async

* Updated in accordance with linter

* Update tsconfig.json
2018-07-15 12:34:22 -07:00

27 lines
584 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es5",
"es2015.promise",
"webworker"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"strictFunctionTypes": true
},
"files": [
"index.d.ts",
"websocket-async-tests.ts"
]
}