blob: dfe48b85380239eb07af724cbfe32ac9c591d875 [file] [log] [blame]
Samuel Shuert274a4d62023-12-01 15:04:55 -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}