summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..f78fc76
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "module": "es2015",
+ "target": "es2016",
+ "lib": [
+ "dom",
+ "es2016"
+ ],
+ "baseUrl": "./",
+ "noImplicitAny": true,
+ "experimentalDecorators": true,
+ "sourceMap": false,
+ "moduleResolution": "node",
+ "strictNullChecks": true,
+ "declaration": true,
+ "noEmit": true,
+ "pretty": true,
+ "outDir": "ts-output"
+ },
+ "include": [
+ "src/decko.d.ts",
+ "tests/index.ts"
+ ]
+}