From eaef0767d30eda59c390bb0832ca0f46bebc9cd7 Mon Sep 17 00:00:00 2001 From: Joaquin Pereyra Date: Sat, 31 May 2025 18:50:09 -0300 Subject: [PATCH] FEAT: add jsconfig.json file --- jsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 00000000..00bab1f5 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "module": "ES6", + "target": "ES6", + "paths": { + "@client/*": ["./foundry/client/*"], + "@common/*": ["./foundry/common/*"] + } + }, + "exclude": ["node_modules", "**/node_modules/*"], + "include": ["daggerheart.mjs", "foundry/client/client.mjs", "daggerheart.d.ts"], + "typeAcquisition": { + "include": ["jquery"] + } +}