From 78fbd0234cec73284d9f1a86f2138728812a6658 Mon Sep 17 00:00:00 2001 From: bytedream Date: Mon, 24 Jan 2022 13:35:08 +0100 Subject: [PATCH] Added tsconfig --- js/tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 js/tsconfig.json diff --git a/js/tsconfig.json b/js/tsconfig.json new file mode 100644 index 0000000..90e7322 --- /dev/null +++ b/js/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compileOnSave": true, + "compilerOptions": { + "module": "commonjs", + "target": "es2018", + "removeComments": true, + "sourceMap": true, + "lib": ["es2018", "dom"] + } +}