tsconfig.json 652 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "target": "es6",
  5. "alwaysStrict": true,
  6. "noImplicitAny": true,
  7. "noImplicitThis": true,
  8. "sourceMap": true,
  9. "noUnusedLocals": true,
  10. "strictNullChecks": true,
  11. "strictFunctionTypes": true,
  12. "module": "esnext",
  13. "esModuleInterop": true,
  14. "moduleResolution": "node",
  15. "importHelpers": true,
  16. "noEmitHelpers": true,
  17. "allowSyntheticDefaultImports": true,
  18. "jsx": "react-jsx",
  19. "lib": [ "dom", "es2020" ],
  20. "rootDir": "src",
  21. "outDir": "lib"
  22. },
  23. "include": [ "src" ],
  24. "exclude": [
  25. "node_modules",
  26. "src/examples/external-mapping"
  27. ]
  28. }