Files
freeCodeCamp/curriculum/tsconfig.json

17 lines
477 B
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
}
}