Browse Source

Merge branch 'dev/7.1.x' into fix/153810-153820-paste-text-only

Yuki Takei 1 năm trước cách đây
mục cha
commit
8f3c933906
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  1. 13 0
      packages/remark-growi-directive/vitest.config.ts

+ 13 - 0
packages/remark-growi-directive/vitest.config.ts

@@ -0,0 +1,13 @@
+import tsconfigPaths from 'vite-tsconfig-paths';
+import { defineConfig } from 'vitest/config';
+
+export default defineConfig({
+  plugins: [
+    tsconfigPaths(),
+  ],
+  test: {
+    environment: 'node',
+    clearMocks: true,
+    globals: true,
+  },
+});