aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-05-24 17:28:39 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-05-24 17:28:39 +0800
commitd35932806a471f7c2dc73329e99cb1b3e365e58e (patch)
treea98ed9bb0b7de0e9976b3a6de858ff7981a82d65 /tsconfig.json
parent90b3d6bc1030ecd37e26e30ca68a9e04b9e54b1f (diff)
downloaddexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.tar
dexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.tar.gz
dexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.tar.bz2
dexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.tar.lz
dexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.tar.xz
dexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.tar.zst
dexon-sol-tools-d35932806a471f7c2dc73329e99cb1b3e365e58e.zip
Add initial tsconfig
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
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/**/*"
+ ]
+}