diff --git a/.gitignore b/.gitignore index 16e52f8..4a75364 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Generated .vscode +.astro node_modules test/.astro -test/node_modules +test/node_modules \ No newline at end of file diff --git a/bun.lockb b/bun.lockb index 186dd82..178998f 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/tsconfig.json b/tsconfig.json index 0682c6f..06e9438 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,13 @@ "index.ts" ], "compilerOptions": { - "jsx": "react" + "lib": ["ESNext"], + "target": "ESNext", + "module": "ESNext", + "jsx": "react-jsx", + "allowJs": true, + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, } } \ No newline at end of file