Files
freeCodeCamp/api/tsconfig.json
Mrugesh Mohapatra 45c098d506 feat(api): s/jest/vitest/g (#61863)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
2025-08-25 22:57:56 +05:30

15 lines
461 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "CommonJS",
"allowJs": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noEmit": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true /* This should only be necessary while migrating to vitest, once we're done with that migration we can move to ESM and *hopefully* get rid of this */
}
}