discord-bot/jsconfig.json

28 lines
502 B
JSON
Raw Normal View History

2024-07-04 05:05:34 -07:00
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES6",
"baseUrl": "./",
"paths": {
"@root/*": [
"./*"
],
"@handlers/*": [
"./src/handlers/*"
],
"@helpers/*": [
"./src/helpers/*"
],
"@schemas/*": [
"./src/database/schemas/*"
],
"@src/*": [
"./src/*"
],
"@structures/*": [
"./src/structures/*"
]
}
},
"exclude": ["node_modules", "**/node_modules/*"]
}