tsconfig.json 547 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "customConditions": [
  5. "workers"
  6. ],
  7. "target": "ESNext",
  8. "module": "ESNext",
  9. "moduleResolution": "bundler",
  10. "allowSyntheticDefaultImports": true,
  11. "esModuleInterop": true,
  12. "jsx": "preserve",
  13. "jsxImportSource": "solid-js",
  14. "allowJs": true,
  15. "strict": true,
  16. "noEmit": true,
  17. "types": [
  18. "vinxi/types/client"
  19. ],
  20. "isolatedModules": true,
  21. "paths": {
  22. "~/*": [
  23. "./src/*"
  24. ]
  25. }
  26. }
  27. }