feat: initial commit

This commit is contained in:
2023-11-01 20:13:31 -05:00
commit f9ac85dfe4
12 changed files with 512 additions and 0 deletions

16
jsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"types": ["bun-types"],
"lib": ["esnext"],
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"jsx": "react",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": true
},
"include": ["tmp.js", "src/**/*.js", "bun/**/*.js"]
}