tsconfig.json 455 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "jsx": "react",
  4. "lib": ["es2015", "dom"],
  5. "noImplicitAny": false, // TODO: Enable once all existing code is typed
  6. "noUnusedLocals": true,
  7. "noUnusedParameters": true,
  8. "strictNullChecks": true,
  9. "esModuleInterop": true,
  10. "allowJs": true,
  11. "downlevelIteration": true
  12. },
  13. "files": [
  14. "client/src/index.ts",
  15. "client/src/custom.d.ts"
  16. ]
  17. }