summary refs log tree commit diff
path: root/gateway/.swcrc
diff options
context:
space:
mode:
Diffstat (limited to 'gateway/.swcrc')
-rw-r--r--gateway/.swcrc21
1 files changed, 13 insertions, 8 deletions
diff --git a/gateway/.swcrc b/gateway/.swcrc

index f04801b8..0cf5e465 100644 --- a/gateway/.swcrc +++ b/gateway/.swcrc
@@ -1,9 +1,14 @@ { - "jsc": { - "parser": { - "syntax": "typescript", - "decorators": true - }, - "target": "es2021" - } -} \ No newline at end of file + "jsc": { + "parser": { + "syntax": "typescript", + "decorators": true + }, + "target": "es2021", + "baseUrl": ".", + "paths": { + "@fosscord/gateway": ["src/index"], + "@fosscord/gateway/*": ["src/*"] + } + } +}