mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 02:23:31 +01:00
* refactor: using eslint-config-neon on mainlib * fix: lint * fix: lint * fix: the way we lint * chore: lint some more * fix: more lint changes * fix: type tests * chore: port eslint rule * refactor: lintstaged doesn't need this * fix: eslint was a bit too eager * fix: forgot Client * Apply suggestions from code review Co-authored-by: Almeida <github@almeidx.dev> * chore: more lint fixes * fix: remove useless Boolean() * fix: get docs back * fix: snowflake docs * refactor: don't use typescript lint rules * fix: code review * fix: tidy up disabled rules * chore: code review * chore: code review * chore: code review * fix: consistent spacing in typings * fix: tests * fix: unsort ErrorCodes * chore: get comments back * Update packages/discord.js/src/client/websocket/handlers/THREAD_LIST_SYNC.js Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> * fix: remove unused parameter * fix: merge messed up types * fix: more type mess from merge * fix: generate script for ActionsManager * fix: code review * Update packages/discord.js/src/structures/MessageMentions.js Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> * Update packages/discord.js/src/structures/Presence.js Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> * fix: replace is faster, unicorn is wrong * fix: consistency * fix: delete obsolete file * fix: minor nit in test file --------- Co-authored-by: Almeida <github@almeidx.dev> Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
21 lines
395 B
JSON
21 lines
395 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
"typings/**/*.d.ts",
|
|
"typings/**/*.d.mts",
|
|
"typings/**/*.test-d.ts",
|
|
"typings/**/*.test-d.mts",
|
|
"bin",
|
|
"scripts",
|
|
"__tests__",
|
|
"__mocks__"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|