tsconfig.json 524 B

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