feat: Refactor result preparation and add contradiction checks

This commit is contained in:
AG
2025-10-11 17:03:13 +03:00
parent 42303b1fc3
commit fd2676dd5f
14 changed files with 436 additions and 211 deletions

View File

@@ -2,6 +2,8 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"types": ["node", "jest"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
@@ -9,6 +11,6 @@
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "tests"]
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}