Files
freeCodeCamp/curriculum/tsconfig.json
2025-10-23 10:54:57 +05:30

18 lines
534 B
JSON

{
"references": [{ "path": "../shared/tsconfig.json" }],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"declaration": true,
"target": "es2022",
"module": "nodenext",
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noEmit": false,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true // vitest cannot import cjs. The options are 1) migrate to esm, 2) don't type check tests and 3) skip lib checks
}
}