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 4181988 commit 1597369Copy full SHA for 1597369
config/babel.config.js
@@ -31,7 +31,12 @@ module.exports = (api) => {
31
comments: false,
32
overrides: [
33
{
34
- test: ["../src/react/index.tsx"],
+ test: [
35
+ "../src/react/index.tsx",
36
+ "../src/lib/logger.ts",
37
+ "../src/core/errors.ts",
38
+ "../src/client/**",
39
+ ],
40
presets: [
41
["@babel/preset-env", { targets: { ie: 11 } }],
42
["@babel/preset-react", { runtime: "automatic" }],
src/core/errors.ts
@@ -1,5 +1,5 @@
1
-import { EventCallbacks, LoggerInstance } from ".."
2
-import { Adapter } from "../adapters"
+import type { EventCallbacks, LoggerInstance } from ".."
+import type { Adapter } from "../adapters"
3
4
/**
5
* Same as the default `Error`, but it is JSON serializable.
0 commit comments