UNPKG

@stryke/fs

Version:

A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.

14 lines (12 loc) 376 B
import { tsconfig_exports } from "./tsconfig.mjs"; import { describe, expect, it } from "vitest"; //#region src/tsconfig.test.ts describe("tsconfig.ts exports", () => { it("loads module exports", () => { expect(tsconfig_exports).toBeDefined(); expect(typeof tsconfig_exports).toBe("object"); }); }); //#endregion export { }; //# sourceMappingURL=tsconfig.test.mjs.map