From 15e5ead2d15d1726772c82544462b0acbdb227fa Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 8 Feb 2020 12:55:56 +0400 Subject: Initial TypeScript Signed-off-by: Valentin Popov --- tsconfig.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ee95095 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "declaration": true, + "downlevelIteration": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "module": "ES2015", + "moduleResolution": "Node", + "newLine": "lf", + "noImplicitReturns": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "outDir": "dist", + "removeComments": true, + "sourceMap": true, + "strict": true, + "target": "ES5" + }, + "exclude": [ + "node_modules", + "dist" + ], + "include": [ + "src" + ] +} -- cgit v1.2.3