Initial state

This commit is contained in:
2023-05-16 10:16:21 -06:00
commit c3c0108143
167 changed files with 20135 additions and 0 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true,
"lib": ["ES2020", "DOM"],
"rootDir": "./ts",
"outDir": "./js",
"watch": true,
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}