From 8ef6f933a745214ba02a12cf778eb36bc04a0891 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Thu, 3 Dec 2020 18:48:35 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=E2=9A=99=20tsconfig=20-=20includes=20+=20e?= =?UTF-8?q?xcludes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 0f2192a..3f35579 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,4 +9,11 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true } + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "**/*.spec.ts" + ] } \ No newline at end of file From ffc31506e36b9c0b22cc7cc66e6ab5f06c4a64cf Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Thu, 3 Dec 2020 18:48:51 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=E2=9A=99tsconfig=20-=20no=20sourcemaps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 3f35579..573aa28 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,9 @@ "esModuleInterop": true, "strict": false, "experimentalDecorators": true, - "emitDecoratorMetadata": true - } + "emitDecoratorMetadata": true, + "sourceMap": false + }, "include": [ "src/**/*" ], From 9051b7565cf3506ddecfdc0abc05e7266be450dd Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Thu, 3 Dec 2020 18:49:21 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9A=99target:=20es2017=20=E2=96=B6=20ES2?= =?UTF-8?q?020?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 573aa28..dfd4d15 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es2017", + "target": "ES2020", "module": "commonjs", "rootDir": "./src", "outDir": "./build",