From a6b4bc15ebcfc3aa358fcfc95967da56381f0603 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 20 Aug 2019 00:57:52 +0400 Subject: Initial TypeScript Signed-off-by: Valentin Popov --- tsconfig.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5c519e8 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "declaration": true, + "declarationMap": true, + "esModuleInterop": true, + "lib": [ + "es2015" + ], + "module": "commonjs", + "newLine": "lf", + "outDir": "./dist", + "removeComments": false, + "rootDir": "./src", + "sourceMap": true, + "strict": true, + "target": "es5" + }, + "exclude": [ + "dist", + "node_modules", + "test" + ] +} \ No newline at end of file -- cgit v1.2.3