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

Co-authored-by: jackton1 <[email protected]>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-02 20:51:17 -07:00
committed by Tonye Jack
co-authored by jackton1
parent c86d03b395
commit 08979f08a7
+1 -1
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__"]
}