mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* 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
34 lines
840 B
JSON
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"
|
|
]
|
|
}
|