chore: refactor workspace

This commit is contained in:
iCrawl
2023-05-03 02:14:22 +02:00
parent c429763be8
commit 7e875f6919
129 changed files with 1662 additions and 1371 deletions

View File

@@ -1 +0,0 @@
*.d.ts

View File

@@ -1,12 +1,7 @@
{
"extends": "../../.eslintrc.json",
"plugins": ["eslint-plugin-tsdoc"],
"rules": {
"import/extensions": 0,
"no-restricted-globals": 0
},
"parserOptions": {
"project": "./tsconfig.eslint.json",
"extraFileExtensions": [".mjs"]
}
}

View File

@@ -1,8 +1,8 @@
# Packages
node_modules/
node_modules
# Log files
logs/
logs
*.log
npm-debug.log*
@@ -11,14 +11,18 @@ pids
*.pid
*.seed
# Dist
dist/
typings/
# Env
.env
# Dist
dist
dist-docs
# Docs
docs/**/*
!docs/index.json
!docs/README.md
# Miscellaneous
.tmp/
coverage/
.turbo
.tmp
coverage

View File

@@ -1,9 +1,6 @@
# Autogenerated
CHANGELOG.md
.turbo
dist/
docs/**/*
!docs/index.yml
!docs/README.md
coverage/
dist-docs/
coverage
dist
dist-docs
docs/docs.api.json
CHANGELOG.md

View File

@@ -1 +0,0 @@
[{ "name": "General", "files": [{ "name": "Welcome", "id": "welcome", "path": "../../README.md" }] }]

View File

@@ -61,23 +61,24 @@
"ws": "^8.13.0"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@favware/cliff-jumper": "^2.0.0",
"@microsoft/api-extractor": "^7.34.6",
"@microsoft/api-extractor": "^7.34.7",
"@types/jest": "^29.5.1",
"@types/node": "16.18.25",
"cross-env": "^7.0.3",
"esbuild-plugin-version-injector": "^1.1.0",
"eslint": "^8.39.0",
"eslint-config-neon": "^0.1.42",
"eslint-config-neon": "^0.1.46",
"eslint-formatter-pretty": "^5.0.0",
"jest": "^29.5.0",
"jest-websocket-mock": "^2.4.0",
"mock-socket": "^9.2.1",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"turbo": "^1.9.4-canary.7",
"tweetnacl": "^1.0.3",
"typescript": "^5.0.4"
},

View File

@@ -1,4 +1,5 @@
/* eslint-disable jsdoc/check-param-names */
import { Buffer } from 'node:buffer';
import { VoiceOpcodes } from 'discord-api-types/voice/v4';
import type { VoiceConnection } from '../VoiceConnection';