tsconfig.json 459 B

1234567891011121314151617181920
  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. "isolatedModules": true,
  16. "paths": {
  17. "@/*": ["./src/*"]
  18. }
  19. }
  20. }