From d35932806a471f7c2dc73329e99cb1b3e365e58e Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 24 May 2017 11:28:39 +0200 Subject: Add initial tsconfig --- tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..5ba086da6 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es5", + "lib": [ "es2015", "dom" ], + "outDir": "lib", + "sourceMap": true, + "declaration": true, + "noImplicitAny": true, + "strictNullChecks": true + }, + "include": [ + "./src/ts/**/*" + ] +} -- cgit v1.2.3