Skip to content

Commit

Permalink
skip lib checks
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ru4l committed Aug 5, 2022
1 parent c4f17a2 commit d223808
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 14 deletions.
3 changes: 2 additions & 1 deletion e2e/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": ["./**/*.ts"]
}
1 change: 1 addition & 0 deletions examples/error-handling/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"skipLibCheck": true,
"target": "esnext",
"moduleResolution": "node",
"module": "commonjs",
Expand Down
3 changes: 2 additions & 1 deletion examples/express/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext"]
"lib": ["esnext", "DOM"],
"skipLibCheck": true
}
}
3 changes: 2 additions & 1 deletion examples/fastify-modules/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"lib": ["esnext"],
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
}
}
3 changes: 2 additions & 1 deletion examples/fastify/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
}
}
3 changes: 2 additions & 1 deletion examples/file-upload-nexus/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext"]
"lib": ["esnext"],
"skipLibCheck": true
}
}
3 changes: 2 additions & 1 deletion examples/file-upload/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext"]
"lib": ["esnext"],
"skipLibCheck": true
}
}
3 changes: 2 additions & 1 deletion examples/generic-auth/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
Expand Down
3 changes: 2 additions & 1 deletion examples/graphql-config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext"]
"lib": ["esnext"],
"skipLibCheck": true
}
}
3 changes: 2 additions & 1 deletion examples/graphql-ws/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
Expand Down
3 changes: 2 additions & 1 deletion examples/issue-template/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
Expand Down
3 changes: 2 additions & 1 deletion examples/koa/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
Expand Down
3 changes: 2 additions & 1 deletion examples/live-query/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
Expand Down
3 changes: 2 additions & 1 deletion examples/subscriptions/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
Expand Down
3 changes: 2 additions & 1 deletion examples/sveltekit/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
"esModuleInterop": true,
"skipLibCheck": true
}
}

0 comments on commit d223808

Please sign in to comment.