From 792b3afcb4af9881dbfc6bcb2ccc797d47e293d4 Mon Sep 17 00:00:00 2001 From: tdurieux Date: Tue, 7 Sep 2021 12:25:22 +0200 Subject: [PATCH] chore: use only transpile --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index daedde7..972e723 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,7 @@ { + "ts-node": { + "transpileOnly": true + }, "compilerOptions": { "target": "es6", "module": "commonjs", @@ -6,7 +9,8 @@ "removeComments": true, "preserveConstEnums": true, "forceConsistentCasingInFileNames": true, - "sourceMap": true + "sourceMap": false, + "skipLibCheck": true }, "include": ["src/**/*.ts", "index.ts", "tests3.ts"], "exclude": ["node_modules", ".vscode"]