blob: 7556e1d4b08faa29d4c23d3938bde02733f152ec [file] [log] [blame]
Samuel Shuert7a352ae2024-01-25 20:52:46 -05001{
2 "compilerOptions": {
3 "lib": ["ESNext"],
4 "module": "esnext",
5 "target": "esnext",
6 "moduleResolution": "bundler",
7 "moduleDetection": "force",
8 "allowImportingTsExtensions": true,
9 "noEmit": true,
10 "composite": true,
11 "strict": true,
12 "downlevelIteration": true,
13 "skipLibCheck": true,
14 "jsx": "react-jsx",
15 "allowSyntheticDefaultImports": true,
16 "forceConsistentCasingInFileNames": true,
17 "allowJs": true,
18 "types": [
19 "bun-types" // add Bun global
20 ]
21 }
22}