From 1571d72e7820fe71a223acb1c7e451a6e16be781 Mon Sep 17 00:00:00 2001 From: Sundar Date: Thu, 1 Apr 2021 14:19:07 +0530 Subject: [PATCH] skipLibCheck (#31) * Update package.json * Update tsconfig.json --- package.json | 2 +- tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e91075ed..4538a59b 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ }, "main": "lib/run.js", "scripts": { - "build": "tsc", + "build": "tsc --outDir ./lib --rootDir ./src", "test": "jest", "test-coverage": "jest --coverage" }, diff --git a/tsconfig.json b/tsconfig.json index 5bcb480a..7c001817 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -58,6 +58,7 @@ /* Experimental Options */ // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + "skipLibCheck": true }, "exclude": ["node_modules", "**/*.test.ts"] }