diff --git a/bun.lockb b/bun.lockb new file mode 100644 index 0000000..d557bb5 Binary files /dev/null and b/bun.lockb differ diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5450f44 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "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": false, + "types": [ + "bun-types" // add Bun global + ] + } +} \ No newline at end of file