From 251bf1034cb90df4e543850c8d844d59c0e8a34d Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Sun, 13 Dec 2020 19:06:13 +0100 Subject: [PATCH] Added tsconfig for later building of this project --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..cf0eec0 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "rootDir": "./lib", + "outDir": "./dist", + "esModuleInterop": true, + "sourceMap": false + }, + "include": [ + "lib/**/*" + ], + "exclude": [ + "node_modules", + "**/*.spec.ts" + ] +} \ No newline at end of file