tsconfig.json 416 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "allowSyntheticDefaultImports": true,
  7. "esModuleInterop": true,
  8. "jsx": "preserve",
  9. "jsxImportSource": "solid-js",
  10. "allowJs": true,
  11. "strict": true,
  12. "noEmit": true,
  13. "types": ["vinxi/types/client"],
  14. "isolatedModules": true,
  15. "paths": {
  16. "~/*": ["./src/*"]
  17. }
  18. }
  19. }