From 809ee49f7a972f05a40be3ad80439236428959f9 Mon Sep 17 00:00:00 2001 From: Anatoly Date: Wed, 2 May 2018 03:07:15 +0300 Subject: [PATCH] added tsconfig.json --- tsconfig.json | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a112343..06c13c6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,24 @@ { "compilerOptions": { "module": "commonjs", - "target": "es5", - "sourceMap": true + "allowJs": true, + "target": "es6", + "sourceMap": true, + "outDir": "./dist", + "strict": true, + "types": [ + "node" + ] }, + "exclude": [ "node_modules" + ], + + "include": [ + "./src/Classes/*", + "./src/*", + "./test/TestModules/*", + "./test/*" ] -} \ No newline at end of file +}