{ | |
"compilerOptions": { | |
"lib": ["ESNext"], | |
"module": "ESNext", | |
"target": "ESNext", | |
"moduleResolution": "bundler", | |
"moduleDetection": "force", | |
"allowImportingTsExtensions": true, | |
"noEmit": true, | |
"composite": true, | |
"strict": true, | |
"downlevelIteration": true, | |
"skipLibCheck": true, | |
"jsx": "react-jsx", | |
"allowSyntheticDefaultImports": true, | |
"forceConsistentCasingInFileNames": true, | |
"allowJs": true, | |
"types": [ | |
"bun-types" // add Bun global | |
] | |
} | |
} |