Skip to content

Commit 228d4cd

Browse files
committed
Fix
1 parent 9e68748 commit 228d4cd

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

examples/react/urql/tsconfig.node.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"composite": true,
44
"module": "ESNext",
55
"moduleResolution": "Node",
6-
"allowSyntheticDefaultImports": true
6+
"allowSyntheticDefaultImports": true,
7+
"ignoreDeprecations": "6.0"
78
},
89
"include": ["vite.config.ts"]
910
}

examples/typescript-esm/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"outDir": "dist",
77
"skipLibCheck": true,
88
"rootDir": "./src",
9-
"types": ["node"]
9+
"types": ["node"],
10+
"ignoreDeprecations": "6.0"
1011
},
1112
"include": ["src/**/*"]
1213
}

examples/typescript-graphql-request/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"forceConsistentCasingInFileNames": true,
99
"outDir": "dist",
1010
"rootDir": "./src",
11-
"types": ["node"]
11+
"types": ["node"],
12+
"ignoreDeprecations": "6.0"
1213
},
1314
"include": ["src/**/*.ts"]
1415
}

examples/typescript-resolvers/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"forceConsistentCasingInFileNames": true,
99
"outDir": "dist",
1010
"rootDir": "./src",
11-
"types": ["node"]
11+
"types": ["node"],
12+
"ignoreDeprecations": "6.0"
1213
},
1314
"include": ["src/**/*.ts"]
1415
}

0 commit comments

Comments
 (0)