tsconfig.json 489 B

123456789101112131415161718192021
  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": ["vite/client"],
  16. "isolatedModules": true,
  17. "paths": {
  18. "~/*": ["./src/*"]
  19. }
  20. }
  21. }