FEAT: add jsconfig.json file

This commit is contained in:
Joaquin Pereyra 2025-05-31 18:50:09 -03:00
parent 4cdd2f05eb
commit eaef0767d3

15
jsconfig.json Normal file
View file

@ -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"]
}
}