initial commit

This commit is contained in:
Justin McCormick
2022-08-15 05:43:24 -04:00
commit a28ec64800
8 changed files with 4077 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"outDir": "dist",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"jsx": "react-jsx",
"target": "ES6",
"lib": [
"dom",
"dom.iterable",
"esnext"
]
},
}