freeCodeCamp/web/tsconfig.json

14 lines
398 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"incremental": true,
"module": "esnext",
"isolatedModules": true,
"jsx": "preserve"
// "noUncheckedIndexedAccess": true TODO: add this when you've got time to clean up the code
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"],
"extends": "../tsconfig-base.json"
}