From 2152c7a294d8e79ba9b1ee21d59badd679462e11 Mon Sep 17 00:00:00 2001 From: 7400 <7400> Date: Wed, 24 Jan 2024 08:35:27 -0800 Subject: [PATCH] jsconfig.json supports VScode/IDE --- jsconfig.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..6555d57 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "module": "CommonJS", + "target": "ES6" + }, + "exclude": ["node_modules"] +}