cetirizine

An experimental matrix client written in reactjs utilizing tailwind and storybook
git clone git://archive.git.mtrnord.blog/MTRNord/cetirizine.git
Log | Files | Refs | README | LICENSE

tsconfig.json (567B)


      1 {
      2   "compilerOptions": {
      3     "target": "ESNext",
      4     "lib": ["DOM", "DOM.Iterable", "ESNext"],
      5     "module": "ESNext",
      6     "skipLibCheck": true,
      7 
      8     /* Bundler mode */
      9     "moduleResolution": "bundler",
     10     "allowImportingTsExtensions": true,
     11     "resolveJsonModule": true,
     12     "isolatedModules": true,
     13     "noEmit": true,
     14     "jsx": "react-jsx",
     15 
     16     /* Linting */
     17     "strict": true,
     18     "noUnusedLocals": true,
     19     "noUnusedParameters": true,
     20     "noFallthroughCasesInSwitch": true
     21   },
     22   "include": ["src"],
     23   "references": [{ "path": "./tsconfig.node.json" }]
     24 }