diff --git a/tsconfig.test.json b/tsconfig.test.json new file mode 100644 index 0000000..f4f557f --- /dev/null +++ b/tsconfig.test.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + // Relax unused-variable checks to avoid false positives in test callbacks and mocks. + "noUnusedLocals": false, + "noUnusedParameters": false + } +}