tsconfig.json 384 B

123456789101112131415161718192021
  1. {
  2. "include": [
  3. "src/*"
  4. ],
  5. "compilerOptions": {
  6. "target": "ESNext",
  7. "lib": ["ESNext", "DOM"],
  8. "module": "commonJS",
  9. "jsx": "react",
  10. "allowSyntheticDefaultImports": true,
  11. "esModuleInterop": true,
  12. "rootDir": "./src/",
  13. "paths": {
  14. "./*": ["./*", "./src/*"]
  15. }
  16. },
  17. "exclude": [
  18. "node_modules",
  19. "dist"
  20. ]
  21. }