Demonstration bridge between ATproto and GraphQL. Generate schema types and interface with the ATmosphere via GraphQL queries. Includes a TypeScript server with IDE.
at main 11 lines 262 B view raw
1import { defineConfig } from "vitest/config"; 2 3export default defineConfig({ 4 test: { 5 globals: true, 6 environment: "node", 7 include: ["**/*.test.ts"], 8 exclude: ["node_modules", "dist", ".{ide,cache,output,temp}"], 9 testTimeout: 10000, 10 }, 11});