tsconfig.json 851 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "useDefineForClassFields": true,
  5. "module": "ESNext",
  6. "moduleResolution": "Node",
  7. "strict": true,
  8. "jsx": "preserve",
  9. "resolveJsonModule": true,
  10. "isolatedModules": true,
  11. "esModuleInterop": true,
  12. "lib": ["ESNext", "DOM"],
  13. "skipLibCheck": true,
  14. "noEmit": true,
  15. "paths": {
  16. "@hoppscotch/common": ["../hoppscotch-common/src/index.ts"],
  17. "@hoppscotch/common/*": ["../hoppscotch-common/src/*"],
  18. "@platform/*": ["./src/platform/*"],
  19. "@lib/*": ["./src/lib/*"],
  20. "@hoppscotch/sh-admin": ["../hoppscotch-sh-admin/src/index.ts"],
  21. "@hoppscotch/sh-admin/*": ["../hoppscotch-sh-admin/src/*"]
  22. }
  23. },
  24. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  25. "references": [{ "path": "./tsconfig.node.json" }]
  26. }