Просмотр исходного кода

chore: ignore warnings from @coze-editor/editor/language-typescript (#557)

Yiwei Mao 5 месяцев назад
Родитель
Сommit
4b2d41b693
2 измененных файлов с 16 добавлено и 0 удалено
  1. 8 0
      apps/demo-fixed-layout/rsbuild.config.ts
  2. 8 0
      apps/demo-free-layout/rsbuild.config.ts

+ 8 - 0
apps/demo-fixed-layout/rsbuild.config.ts

@@ -23,4 +23,12 @@ export default defineConfig({
   html: {
     title: 'demo-fixed-layout',
   },
+  tools: {
+    rspack: {
+      /**
+       * ignore warnings from @coze-editor/editor/language-typescript
+       */
+      ignoreWarnings: [/Critical dependency: the request of a dependency is an expression/],
+    },
+  },
 });

+ 8 - 0
apps/demo-free-layout/rsbuild.config.ts

@@ -23,4 +23,12 @@ export default defineConfig({
   html: {
     title: 'demo-free-layout',
   },
+  tools: {
+    rspack: {
+      /**
+       * ignore warnings from @coze-editor/editor/language-typescript
+       */
+      ignoreWarnings: [/Critical dependency: the request of a dependency is an expression/],
+    },
+  },
 });