test: add deterministic task behaviour tests

This commit is contained in:
Mpho10111
2026-08-11 21:15:21 +02:00
parent 75797c8419
commit 67404c2de2
6 changed files with 204 additions and 1 deletions

19
tsconfig.test.json Normal file
View File

@@ -0,0 +1,19 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": false,
"baseUrl": ".",
"incremental": false,
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": false,
"outDir": ".test-build",
"paths": {
"@/*": ["./*"]
},
"target": "ES2022",
"tsBuildInfoFile": ".test-build/tsconfig.test.tsbuildinfo"
},
"include": ["lib/**/*.ts", "types/**/*.ts"],
"exclude": ["node_modules", ".next", ".test-build"]
}