tsconfig.json 555 B

12345678910111213141516171819202122
  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", "bun"],
  16. "isolatedModules": true,
  17. "paths": {
  18. "~/*": ["./src/*"]
  19. }
  20. },
  21. "include": ["*.ts", "src", "../core/src/resource.d.ts"]
  22. }