🚀 Init

This commit is contained in:
Korbs 2024-12-03 21:50:31 -05:00
commit cc996376f5
9 changed files with 920 additions and 0 deletions

16
tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"include": [
"./src",
"index.ts"
],
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
}
}