tsconfig.json 419 B

12345678910111213141516
  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. },
  12. "files": [
  13. "client/src/index.ts",
  14. "client/src/custom.d.ts"
  15. ]
  16. }