summary refs log tree commit diff
path: root/api/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--api/tsconfig.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/api/tsconfig.json b/api/tsconfig.json

index 6bf2e6b7..0169642d 100644 --- a/api/tsconfig.json +++ b/api/tsconfig.json
@@ -63,6 +63,12 @@ /* Advanced Options */ "skipLibCheck": true /* Skip type checking of declaration files. */, - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */, + "baseUrl": ".", + "paths": { + "@fosscord/api": ["src/index"], + "@fosscord/api/*": ["src/*"] + }, + "plugins": [{ "transform": "@zerollup/ts-transform-paths" }] } }