mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
@types/sockjs-node was impossible to use since the actual name of the package it's meant for on npm is sockjs, not sockjs-node. @types/sockjs already existed, however it was the type declaration file for an old version of sockjs-client, which already has its own up-to-date type declaration file under @types/sockjs-client. Fixes #17112
23 lines
451 B
JSON
23 lines
451 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"sockjs-tests.ts"
|
|
]
|
|
}
|