add initial backend code

This commit is contained in:
Lewis Crichton
2023-02-16 20:37:52 +00:00
commit 985c813cc8
11 changed files with 3171 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
"target": "esnext",
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": "./src/",
"outDir": "./dist/"
},
"include": ["src/**/*"]
}