diff --git a/configurations/typescript-compatibility.js b/configurations/typescript-compatibility.js
index 67f3753..33fdd57 100644
--- a/configurations/typescript-compatibility.js
+++ b/configurations/typescript-compatibility.js
@@ -25,7 +25,15 @@ module.exports.recommended = {
         hoist: 'all',
       },
     ],
-    '@typescript-eslint/no-unused-expressions': 2,
+    '@typescript-eslint/no-unused-expressions': [
+      2,
+      {
+        allowShortCircuit: false,
+        allowTaggedTemplates: false,
+        allowTernary: false,
+        enforceForJSX: false,
+      },
+    ],
     '@typescript-eslint/no-unused-vars': 2,
     '@typescript-eslint/no-use-before-define': [
       2,