mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
* fix: failed build in node and bad lints * chore: update tsconfigs --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
25 lines
535 B
TypeScript
25 lines
535 B
TypeScript
/**
|
|
* The default package manager.
|
|
*/
|
|
export const DEFAULT_PACKAGE_MANAGER = 'npm' as const;
|
|
|
|
/**
|
|
* The default project name.
|
|
*/
|
|
export const DEFAULT_PROJECT_NAME = 'my-bot' as const;
|
|
|
|
/**
|
|
* The supported package managers.
|
|
*/
|
|
export const PACKAGE_MANAGERS = ['npm', 'pnpm', 'yarn', 'bun', 'deno'] as const;
|
|
|
|
/**
|
|
* The supported Node.js package managers.
|
|
*/
|
|
export const NODE_PACKAGE_MANAGERS = ['npm', 'pnpm', 'yarn'] as const;
|
|
|
|
/**
|
|
* The URL to the guide.
|
|
*/
|
|
export const GUIDE_URL = 'https://guide.discordjs.dev' as const;
|