DefinitelyTyped/types/udp-discovery/tsconfig.json
Scott Page USMC 95fd9da3a4
🤖 Merge PR #46684 Added udp-discovery by @scottpage
* Added udp-discovery

* Removed license

* Added dom to tsconfig.json

* Removed tiny-typed-emitter

* Fixed type def comments

* Removed extra version part

* Fixing test errors;

* Removed module declaration

* Added exports

* Fixed formatting

Co-authored-by: Scott Page <scott.page@indysoft.com>
2020-08-20 18:05:52 -04:00

25 lines
484 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [ "es6", "dom" ],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"udp-discovery-tests.ts"
],
"exclude": [
"node_modules"
]
}