diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
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/**/*" + ] +} |