mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 10:07:46 -05:00
18 lines
534 B
JSON
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
|
|
}
|
|
}
|