tsconfig.json 498 B

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