continue refactor of backend to utilize ts, deprecate js

This commit is contained in:
KS Jannette
2026-05-09 16:57:37 -04:00
parent 1a1161b509
commit c9a69a4d27
20 changed files with 509 additions and 240 deletions

View File

@@ -1,13 +1,15 @@
{
"compilerOptions": {
"allowJs": true, // Allow JavaScript files to be imported and compiled
"allowJs": true,
"checkJs": true,
"target": "es2022",
"module": "commonjs",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src", // Root of input files
"rootDir": "./src",
"strict": true,
"skipLibCheck": true // Skip checking .d.ts files for faster builds
"skipLibCheck": true,
"esModuleInterop": true
},
"include": [
"src/**/*"