We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf54b80 commit ef41d90Copy full SHA for ef41d90
vite.config.ts
@@ -19,6 +19,11 @@ const viteConfig = defineViteConfig({
19
exclude: ["typescript"],
20
needsInterop: ['@accordproject/template-engine'],
21
},
22
+ build: {
23
+ rollupOptions: {
24
+ external: ["typescript"],
25
+ },
26
27
});
28
29
@@ -29,11 +34,6 @@ const vitestConfig = defineVitestConfig({
34
environment: "jsdom",
30
35
setupFiles: "./src/utils/testing/setup.ts",
31
36
32
- build: {
33
- rollupOptions: {
- external: ["typescript"],
- },
37
38
39
export default mergeConfig(viteConfig, vitestConfig);
0 commit comments