Issue description
Steps to reproduce the issue :
-
Install discordjs/voice via npm
npm install @discordjs/voice
-
Install discordjs/opus via npm
npm install @discordjs/opus
-
Install sodium via npm
-
Verify that npm had installed these version of those packages :
- @discordjs/voice v0.7.5
- @discordjs/opus v0.5.3
- sodium v3.0.2
-
Create a starting point for the bot (in a src folder), could be a simple ping and pong command
-
creates tsconfig.json with these contents :
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"jsx": "preserve",
"strictFunctionTypes": true,
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "./build",
"rootDir": "./src",
"typeRoots": [
"./node_modules/@types",
"./node_modules/discord.js/typings",
"./node_modules/@discordjs/voice",
]
},
"exclude": [
"./node_modules/@discordjs",
"node_modules",
"**/node_modules/*",
]
}
adjust the tsconfig's if you have different source and build folder.
Module '"${ProjectPath}/node_modules/prism-media/typings/index"' has no default export.
- From : ${ProjectPath}/node_modules/@discordjs/voice/dist/index.d.ts, Line 2
Module '"${ProjectPath}/node_modules/@types/ws/index"' can only be default-imported using the 'esModuleInterop' flag
- From : ${ProjectPath}/node_modules/@discordjs/voice/dist/index.d.ts, Line 5
Code sample
${ProjectPath}/node_modules/@discordjs/voice/dist/index.d.ts, contents :
import { Readable, ReadableOptions } from 'node:stream';
import prism from 'prism-media';
import { TypedEmitter } from 'tiny-typed-emitter';
import { GatewayVoiceServerUpdateDispatchData, GatewayVoiceStateUpdateDispatchData } from 'discord-api-types/v9';
import WebSocket, {MessageEvent} from 'ws';
@discordjs/voice version
0.7.5
Node.js version
v17.2.0
Operating system
Linux, BTW I use "linux 5.15.5.arch1-1" kernel
Priority this issue should have
Medium (should be fixed soon)
Issue description
Steps to reproduce the issue :
Install discordjs/voice via npm
npm install @discordjs/voiceInstall discordjs/opus via npm
npm install @discordjs/opusInstall sodium via npm
npm install sodiumVerify that npm had installed these version of those packages :
Create a starting point for the bot (in a src folder), could be a simple ping and pong command
creates tsconfig.json with these contents :
{ "compilerOptions": { "module": "commonjs", "target": "es2020", "jsx": "preserve", "strictFunctionTypes": true, "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "outDir": "./build", "rootDir": "./src", "typeRoots": [ "./node_modules/@types", "./node_modules/discord.js/typings", "./node_modules/@discordjs/voice", ] }, "exclude": [ "./node_modules/@discordjs", "node_modules", "**/node_modules/*", ] }adjust the tsconfig's if you have different source and build folder.
Run typescript compilation
tsc -p tsconfig.jsonEnjoy the error :
Code sample
@discordjs/voice version
0.7.5
Node.js version
v17.2.0
Operating system
Linux, BTW I use "linux 5.15.5.arch1-1" kernel
Priority this issue should have
Medium (should be fixed soon)