working on basic service setup, auth, conf

This commit is contained in:
2023-07-16 22:05:14 -07:00
commit e26ba0297a
16 changed files with 2362 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"include": [
"src/**/*.ts"
],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build",
"target": "ES2022",
"moduleResolution": "NodeNext"
}
}