first commit

This commit is contained in:
Joshua Seigler 2022-10-11 00:08:38 -04:00
commit c0216d7149
16 changed files with 10324 additions and 0 deletions

14
tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"outDir": "./dist",
"sourceMap": true,
"noImplicitAny": true,
"module": "es6",
"moduleResolution": "node",
"target": "es6",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
},
"include": ["./src/**/*"]
}