CalypsoBot
CalypsoBot copied to clipboard
Add Module-Alias
add module-alias npm package, so you can easily import "../Command" as "@Command" and access it from anywhere within the project easily.
@Militia21
jsconfig.json
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@Commands/*": ["./commands/*"]
}
}
}