annalasko
annalasko
Explore posts from servers
DIAdiscord.js - Imagine an app
Created by annalasko on 4/1/2025 in #djs-questions
ESLint (VSCodium) error after using `npm create discord-bot`
- What's your exact discord.js npm list discord.js and node node -v version?
<bot name>@0.1.0 <bot directory>
<bot name>@0.1.0 <bot directory>
v23.9.0
v23.9.0
- Post the full error stack trace, not just the top part!
Parsing error: ESLint was configured to run on `<bot directory>/src/commands/ping.ts` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.eslint.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/troubleshooting/typed-linting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
Parsing error: ESLint was configured to run on `<bot directory>/src/commands/ping.ts` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.eslint.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/troubleshooting/typed-linting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
- Show your code! My code is unchanged from what is found in https://github.com/discordjs/discord.js/blob/main/packages/create-discord-bot/template/TypeScript/src/commands/ping.ts
3 replies
SIASapphire - Imagine a Framework
Created by annalasko on 6/4/2024 in #sapphire-support
Equivalent of z.function from zod in shapeshift?
Understood, thank you!
6 replies
SIASapphire - Imagine a Framework
Created by annalasko on 6/4/2024 in #sapphire-support
Equivalent of z.function from zod in shapeshift?
This is the code I am trying to convert to its shapeshift equivalent:
export const schema = z.object({
data: z.record(z.any()),
execute: z.function(),
});

export const predicate: StructurePredicate<Command> = (structure: unknown): structure is Command =>
schema.safeParse(structure).success;
export const schema = z.object({
data: z.record(z.any()),
execute: z.function(),
});

export const predicate: StructurePredicate<Command> = (structure: unknown): structure is Command =>
schema.safeParse(structure).success;
6 replies
SIASapphire - Imagine a Framework
Created by annalasko on 6/4/2024 in #sapphire-support
Equivalent of z.function from zod in shapeshift?
Additionally, what is the equivalent of safeParse() and .success?
6 replies
DIAdiscord.js - Imagine an app
Created by annalasko on 5/11/2024 in #djs-questions
Do I need to manually check if each message in an Array is bulkDeletable?
4 replies