matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

tsconfig.json (608B)


      1 {
      2   "compilerOptions": {
      3     "target": "ESNext",
      4     "useDefineForClassFields": true,
      5     "lib": [
      6       "DOM",
      7       "DOM.Iterable",
      8       "ESNext"
      9     ],
     10     "allowJs": false,
     11     "skipLibCheck": true,
     12     "esModuleInterop": false,
     13     "allowSyntheticDefaultImports": true,
     14     "strict": true,
     15     "forceConsistentCasingInFileNames": true,
     16     "module": "ESNext",
     17     "moduleResolution": "Node",
     18     "resolveJsonModule": true,
     19     "isolatedModules": true,
     20     "noEmit": true,
     21     "jsx": "react-jsx"
     22   },
     23   "include": [
     24     "src"
     25   ],
     26   "references": [
     27     {
     28       "path": "./tsconfig.node.json"
     29     }
     30   ]
     31 }