mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 13:56:15 +00:00
feat(bots/discord): add source
This commit is contained in:
25
bots/discord/tsconfig.json
Executable file
25
bots/discord/tsconfig.json
Executable file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"outDir": "dist",
|
||||
"module": "ESNext",
|
||||
"target": "ESNext",
|
||||
"lib": ["ESNext"],
|
||||
"composite": false,
|
||||
"exactOptionalPropertyTypes": false,
|
||||
"esModuleInterop": true,
|
||||
"paths": {
|
||||
"$/*": ["./src/*"],
|
||||
"$constants": ["./src/constants"],
|
||||
"$utils/*": ["./src/utils/*"],
|
||||
"$classes": ["./src/classes/index.ts"],
|
||||
"$classes/*": ["./src/classes/*"],
|
||||
"$commands": ["./src/commands/index.ts"],
|
||||
"$commands/*": ["./src/commands/*"]
|
||||
},
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"exclude": ["node_modules", "dist"],
|
||||
"include": ["./*.json", "src/**/*.ts", "scripts/**/*.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user