summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-20 06:45:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-20 06:45:41 +0000
commit9d45e42dc0298ea8241132142d3100358fe99dc4 (patch)
tree8435105a23089a82f8298490dff6e3e4218930b4 /tsconfig.json
parentInitial commit. (diff)
downloaddecko-9d45e42dc0298ea8241132142d3100358fe99dc4.tar.xz
decko-9d45e42dc0298ea8241132142d3100358fe99dc4.zip
Adding upstream version 1.2.0.upstream/1.2.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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"
+ ]
+}