From ceb4deca7c5364d3f3ca89019e8301989bf37fb8 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Thu, 14 May 2020 01:44:07 +0200 Subject: [PATCH] update --- tsconfig.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e5408c5 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es5", + "lib": [ "es2015" ], + "declaration": true, + "outDir": "./dist", + "sourceMap": true, + "newLine": "LF", + "noUnusedLocals": true, + "noUnusedParameters": true, + "incremental": true, + "strict": true, + "downlevelIteration": true + }, + "filesGlob": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist/**/*", + "deno_dist/**/*", + "mod.ts" + ] +} \ No newline at end of file