generated from Jarco-dev/bot-layout-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 1.36 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"allowJs": false,
"esModuleInterop": true,
"target": "ES2021",
"rootDir": "./src",
"outDir": "dist",
"baseUrl": ".",
"skipLibCheck": true,
"sourceMap": false,
"declaration": false,
"paths": {
"@/autoComplete/*": ["src/interactions/autocomplete/*"],
"@/button/*": ["src/interactions/buttonComponents/*"],
"@/channelMenu/*": ["src/interactions/channelSelectMenuComponents/*"],
"@/chatCommand/*": ["src/interactions/chatInputCommands/*"],
"@/mentionableMenu/*": ["src/interactions/mentionableSelectMenuComponents/*"],
"@/msgContextMenu/*": ["src/interactions/messageContextMenuCommands/*"],
"@/modal/*": ["src/interactions/modals/*"],
"@/roleMenu/*": ["src/interactions/roleSelectMenuComponents/*"],
"@/stringMenu/*": ["src/interactions/stringSelectMenuComponents/*"],
"@/userContextMenu/*": ["src/interactions/userContextMenuCommands/*"],
"@/userMenu/*": ["src/interactions/userSelectMenuComponents/*"],
"@/classes": ["src/classes"],
"@/structures": ["src/classes/structures"],
"@/types": ["src/types"]
}
},
"include": [
"src/**/*"
]
}