Initial commit

This commit is contained in:
2023-10-29 19:28:07 +00:00
commit b0d0353ba7
25 changed files with 7930 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "es2017",
"module": "es2022",
"moduleResolution": "node",
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
}
}