This commit is contained in:
Korbs 2024-12-02 19:13:22 -05:00
parent 2f97de3a91
commit 95cc10089c
3 changed files with 10 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
# Generated
.vscode
.astro
node_modules
test/.astro
test/node_modules

BIN
bun.lockb

Binary file not shown.

View file

@ -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,
}
}