From 3eafffdd3a41050545cd4941e46f29df700906ce Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Sun, 4 Feb 2024 11:16:55 -0800 Subject: [PATCH] feat: add `jsconfig.json` file --- 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"] +}