DefinitelyTyped/types/ts3-nodejs-library/tsconfig.json
Pascal Sthamer 0bb06879d9 Add typings for ts3-nodejs-library (#34797)
* Add ts3-nodejs-library typings

* Use files instead of include

* Fix json error in tsconfig

* Require at least TypeScript Version 3.0

* Fix typescript version header

* Remove duplicate typings in subclasses of the abstract class

* Add constructor list typings
2019-04-18 15:44:35 -07:00

34 lines
840 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"ts3-nodejs-library-tests.ts",
"index.d.ts",
"TeamSpeak3.d.ts",
"property/Abstract.d.ts",
"property/Channel.d.ts",
"property/ChannelGroup.d.ts",
"property/Client.d.ts",
"property/Server.d.ts",
"property/ServerGroup.d.ts",
"transport/Command.d.ts",
"transport/FileTransfer.d.ts",
"transport/TS3Query.d.ts"
]
}