From 750b25066b2fdd7a01fd8665c3771368ed92b7f4 Mon Sep 17 00:00:00 2001 From: Luis Riegger Date: Sat, 8 May 2021 18:55:09 +0200 Subject: [PATCH] add tsconfig --- tsconfig.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..bf07099 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "ES2018", // ~node10 + "module": "commonjs", + "lib": [ + "es2015", + "es2016", + "es2017", + "es2018" + ], + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "noImplicitAny": false + }, + "include": [ + "src/" + ], + "exclude": [ + "**/*.spec.ts" + ] +}