| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "lib": ["ESNext"],
- "target": "ESNext",
- "module": "Preserve",
- "moduleDetection": "force",
- "jsx": "react-jsx",
- "allowJs": true,
- "types": ["bun"],
- "baseUrl": ".",
- "paths": {
- "src/*": ["src/*"]
- },
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "noEmit": true,
- "strict": false,
- "skipLibCheck": true,
- "noFallthroughCasesInSwitch": true
- },
- "include": ["src", "scripts", "env.d.ts"]
- }
|