initial commit

This commit is contained in:
Orion Kindel
2024-12-01 11:57:24 -06:00
commit 96bae63e38
6 changed files with 89 additions and 0 deletions

23
jsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"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": [
"./scripts/*.js",
"ui-serve/**/*.js",
"api/**/*.js",
"ui/**/*.js",
"aws/**/*.js",
"logging/**/*.js"
]
}