UNPKG

@pothos/plugin-directives

Version:

Directive plugin for Pothos, enables using graphql-tools based directives with Pothos

21 lines (19 loc) 460 B
import { defineConfig } from 'vitest/config'; export default defineConfig({ resolve: { alias: { graphql: 'graphql/index.js' } }, test: { environment: 'node', globals: true, deps: {}, exclude: [ 'packages/plugin-authz/**/*', 'packages/plugin-federation/**/*', 'packages/plugin-directives/**/*', '**/node_modules/**', ], typecheck: { enabled: true, tsconfig: 'tsconfig.type.json', }, }, });