diff --git a/docs/djblets/conf.py b/docs/djblets/conf.py
index 8beb3076d152b508c71fcc4078478218bb9c66e0..c7ae3d96e0a8be6709d7a98ac95f2a287c235e5e 100644
--- a/docs/djblets/conf.py
+++ b/docs/djblets/conf.py
@@ -277,6 +277,21 @@ autodoc_excludes = {
     ],
 }
 
+autodoc_type_aliases = {
+    'JSONDict': 'djblets.util.typing.JSONDict',
+    'JSONDictImmutable': 'djblets.util.typing.JSONDictImmutable',
+    'JSONList': 'djblets.util.typing.JSONList',
+    'JSONListImmutable': 'djblets.util.typing.JSONListImmutable',
+    'JSONValue': 'djblets.util.typing.JSONValue',
+    'SerializableJSONDict': 'djblets.util.typing.SerializableJSONDict',
+    'SerializableJSONDictImmutable':
+        'djblets.util.typing.SerializableJSONDictImmutable',
+    'SerializableJSONList': 'djblets.util.typing.SerializableJSONList',
+    'SerializableJSONListImmutable':
+        'djblets.util.typing.SerializableJSONListImmutable',
+    'SerializableJSONValue': 'djblets.util.typing.SerializableJSONValue',
+}
+
 autosummary_generate = True
 
 napoleon_beanbag_docstring = True
