fix: bugs?
Node.js CI / Lint and Test (push) Successful in 1m24s

This commit is contained in:
2025-07-14 14:18:00 -07:00
parent 1fcb658cf1
commit 15b4626f8d
5 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
* @author Naomi Carrigan
*/
import documentationData from "../data/docs.json";
import documentationData from "../data/docs.json" assert { type: "json" };
import type { FastifyPluginAsync } from "fastify";
/**
+2 -1
View File
@@ -3,7 +3,8 @@
"compilerOptions": {
"rootDir": "./src",
"outDir": "./prod",
"resolveJsonModule": true
"resolveJsonModule": true,
"module": "esnext"
},
"exclude": ["./getDocs.ts"]
}