refactor: Simplify tsconfig structure in jest.config.json

This commit is contained in:
Nawaz Dhandala 2025-12-16 11:34:02 +00:00
parent fbdedaacc3
commit 2fb8239fe9
No known key found for this signature in database
GPG key ID: 96C5DCA24769DBCA

View file

@ -21,13 +21,11 @@
"transform": {
"^.+\\.ts$": ["ts-jest", {
"tsconfig": {
"compilerOptions": {
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": false,
"noPropertyAccessFromIndexSignature": false,
"module": "commonjs"
}
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": false,
"noPropertyAccessFromIndexSignature": false,
"module": "commonjs"
}
}]
}