tsconfig.json 665 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "useDefineForClassFields": true,
  5. "lib": ["DOM", "DOM.Iterable", "ESNext"],
  6. "allowJs": false,
  7. "skipLibCheck": true,
  8. "esModuleInterop": false,
  9. "allowSyntheticDefaultImports": true,
  10. "strict": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "module": "ESNext",
  13. "moduleResolution": "node",
  14. "resolveJsonModule": true,
  15. "isolatedModules": true,
  16. "noEmit": true,
  17. "jsx": "react-jsx",
  18. "paths": {
  19. "@/*": ["./src/*"],
  20. "table": [
  21. "./src/types/table.d.ts"
  22. ]
  23. }
  24. },
  25. "include": ["src"],
  26. "references": [{ "path": "./tsconfig.node.json" }]
  27. }