From 1f34fa69fa5e671395b883b60de9b10cac3f26bf Mon Sep 17 00:00:00 2001 From: Sergei SMART Date: Mon, 14 Mar 2022 19:41:45 +1000 Subject: [PATCH] update tsconfig --- .gitignore | 1 - tsconfig.json | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9771c97..0013a38 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ node_modules build -lib yarn-error.log .idea .nyc_output diff --git a/tsconfig.json b/tsconfig.json index 979d6d1..9667055 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "lib": [ "es2019" ], - "target": "es6", + "target": "es2017", "module": "CommonJS", "moduleResolution": "Node", "outDir": "./lib", @@ -12,10 +12,11 @@ "esModuleInterop": true, "sourceMap": false, "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, "declaration": true }, "include": [ - "src/*" + "src" ], "exclude": [ "node_modules",