From 0757cbbf4d8c0b362ab47b92f89176bcaf88da13 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 30 Jan 2020 15:37:25 +0400 Subject: Initialized project structure Signed-off-by: Valentin Popov --- tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e6fa012 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "moduleResolution": "Node", + "newLine": "lf", + "noImplicitReturns": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "resolveJsonModule": true, + "strict": true + }, + "exclude": [ + "node_modules" + ], + "include": [ + "dist/**/*" + ] +} -- cgit v1.2.3