Geen omschrijving

tsconfig.json 672B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "rootDirs": [
  5. "src",
  6. "stories"
  7. ],
  8. "lib": [
  9. "dom",
  10. "dom.iterable",
  11. "esnext"
  12. ],
  13. "allowJs": true,
  14. "skipLibCheck": true,
  15. "esModuleInterop": true,
  16. "allowSyntheticDefaultImports": true,
  17. "strict": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "module": "esnext",
  20. "moduleResolution": "node",
  21. "resolveJsonModule": true,
  22. "isolatedModules": true,
  23. "noEmit": true,
  24. "jsx": "react"
  25. },
  26. "baseUrl": ".",
  27. "paths": {
  28. "@/*": ["src/*"],
  29. "@components/*": [ "src/components/*" ]
  30. },
  31. "include": [
  32. "src/**/*",
  33. "stories/**/*"
  34. ]
  35. }