| 1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "jsx": "react-jsx",
- "strict": false,
- "skipLibCheck": true,
- "noEmit": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "resolveJsonModule": true,
- "types": ["bun"],
- "paths": {
- "src/*": ["./src/*"]
- }
- },
- "include": ["src/**/*.ts", "src/**/*.tsx"],
- "exclude": ["node_modules"]
- }
|