feat(OBC-001): initialize strict TS plugin project with lint and tests

This commit is contained in:
2026-03-06 08:14:10 -06:00
parent 0c9bcd4057
commit dec39006b1
8 changed files with 8445 additions and 0 deletions

8
vitest.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
include: ["tests/**/*.test.ts"],
},
});