From e77327502f59d25e40bc4d837372a54f14d4e1a7 Mon Sep 17 00:00:00 2001 From: Simon Garner Date: Sat, 4 Sep 2021 07:56:53 +1200 Subject: [PATCH] Disable tsconfig option skipLibCheck See https://github.com/nestjs/graphql/issues/1621#issuecomment-878199238 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 1d2509d9..581b752e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,12 +2,13 @@ "compilerOptions": { "module": "commonjs", "moduleResolution": "node", + "target": "es6", "lib": ["es2015"], "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "es6", + "skipLibCheck": true, "resolveJsonModule": true, "esModuleInterop": true, "sourceMap": true,