fix: import serializeJs using default import instead of a namespace import (#1485)

Co-authored-by: Dawid Kopys <dawid.kopys@creativestyle.pl>
This commit is contained in:
Dawid Kopys
2024-01-15 10:09:42 +01:00
committed by GitHub
parent 2746efa632
commit 72d4df5cce
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import * as serializeJs from 'serialize-javascript'
import serializeJs from 'serialize-javascript'
import { ApolloClient } from '@apollo/client/core/index.js'
export type ApolloClients = { [key: string]: ApolloClient<any> }
+2 -1
View File
@@ -5,7 +5,8 @@
"moduleResolution": "node",
"sourceMap": true,
"skipLibCheck": true,
"strict": true
"strict": true,
"esModuleInterop": true
},
"include": [
"src/**/*"