elevate-rehab-v3

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

tsconfig.json (582B)


      1 {
      2   "compilerOptions": {
      3     "target": "ES2020",
      4     "lib": ["dom", "dom.iterable", "esnext"],
      5     "allowJs": true,
      6     "skipLibCheck": true,
      7     "strict": false,
      8     "forceConsistentCasingInFileNames": true,
      9     "noEmit": true,
     10     "esModuleInterop": true,
     11     "module": "esnext",
     12     "moduleResolution": "node",
     13     "resolveJsonModule": true,
     14     "isolatedModules": true,
     15     "jsx": "preserve",
     16     "incremental": true
     17   },
     18   "exclude": ["node_modules"],
     19   "include": [
     20     "next-env.d.ts",
     21     "**/*.ts",
     22     "**/*.tsx",
     23     ".forestry/types.ts",
     24     ".forestry/config.ts"
     25   ]
     26 }