Add jsconfig to get Foundry autocomplete

This commit is contained in:
Oliver-Akins 2024-12-25 11:27:22 -07:00
parent ce4b4df6d7
commit 850c166cf2
2 changed files with 19 additions and 0 deletions

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"files.exclude": {
"**/node_modules": true
},
"search.exclude": {
"foundry.*.link": true
}
}

11
jsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020"
},
"exclude": ["node_modules", "**/node_modules/*"],
"include": ["module/**/*", "foundry.v13.link/client/**/*.js", "foundry.v13.link/**/*.mjs"],
"typeAcquisition": {
"include": ["jquery"]
}
}