aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-08-09 15:07:00 +0200
committerlonkaars <loek@pipeframe.xyz>2021-08-09 15:07:00 +0200
commite8ca02eda2fea678a407b73af161014d703bab1c (patch)
tree991455fa42c56fb835af1f6ce1fe91755c692104 /tsconfig.json
initial commit (pretty much copied homebridge-beken)
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 0000000..01e4247
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "compilerOptions": {
+ "moduleResolution": "node",
+ "pretty": false,
+ "target": "esnext",
+ "module": "commonjs",
+ "inlineSources": true,
+ "inlineSourceMap": true,
+ "allowSyntheticDefaultImports": true,
+ "skipLibCheck": true,
+ "rootDir": "."
+ },
+ "exclude": [ "node_modules" ],
+ "files": [ "./index.ts" ]
+}