tsconfig.json 746 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "esModuleInterop": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strict": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "resolveJsonModule": true,
  14. "isolatedModules": false,
  15. "experimentalDecorators": true,
  16. "noEmit": true,
  17. "noImplicitThis": false,
  18. "jsx": "react",
  19. "baseUrl": "./src",
  20. "typeRoots": ["./types/*"],
  21. "suppressImplicitAnyIndexErrors": true,
  22. "paths": {
  23. "@/*": ["./*"]
  24. }
  25. },
  26. "include": ["src"],
  27. "exclude": ["node_modules", "build", "dist"]
  28. }