fix: exclude src/__tests__ from tsc compilation to fix NodeNext module resolution errors

Co-authored-by: jackton1 <17484350+jackton1@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-01 18:43:11 +00:00
committed by Tonye Jack
parent c86d03b395
commit 08979f08a7

View File

@@ -10,5 +10,5 @@
"isolatedModules": true, /* Ensure each file can be safely transpiled without relying on other imports. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
},
"exclude": ["node_modules", "jest/setEnvVars.cjs"]
"exclude": ["node_modules", "jest/setEnvVars.cjs", "src/__tests__"]
}