Initial commit

This commit is contained in:
2024-04-19 04:21:19 +00:00
commit dd3482c11d
25 changed files with 7933 additions and 0 deletions

17
tsconfig.json Normal file
View File

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