draupnir4all-web

git clone git://archive.git.mtrnord.blog/MTRNord/draupnir4all-web.git
Log | Files | Refs | README | LICENSE

tsconfig.json (707B)


      1 {
      2   "compilerOptions": {
      3     "target": "ES2017",
      4     "lib": [
      5       "dom",
      6       "dom.iterable",
      7       "esnext"
      8     ],
      9     "allowJs": true,
     10     "skipLibCheck": true,
     11     "strict": true,
     12     "noEmit": true,
     13     "esModuleInterop": true,
     14     "module": "esnext",
     15     "moduleResolution": "bundler",
     16     "resolveJsonModule": true,
     17     "isolatedModules": true,
     18     "noUncheckedIndexedAccess": true,
     19     "jsx": "preserve",
     20     "incremental": true,
     21     "plugins": [
     22       {
     23         "name": "next"
     24       }
     25     ],
     26     "paths": {
     27       "@/*": [
     28         "./src/*"
     29       ]
     30     }
     31   },
     32   "include": [
     33     "next-env.d.ts",
     34     "**/*.ts",
     35     "**/*.tsx",
     36     ".next/types/**/*.ts"
     37   ],
     38   "exclude": [
     39     "node_modules"
     40   ]
     41 }