blob: fa729593d7373b2d2c3b74ea22da2cd6b87bf653 [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,
Samuel Shuertf65c0ab2023-12-03 20:15:29 -050018 "sourceMap": true,
Samuel Shuert274a4d62023-12-01 15:04:55 -050019 "types": [
20 "bun-types" // add Bun global
21 ]
22 }
23}