Finish making the intellisense work properly

This commit is contained in:
Eldritch-Oliver 2025-10-05 13:31:31 -06:00
parent 0917f28fcb
commit 98b429f941
3 changed files with 30 additions and 8 deletions

View file

@ -1,11 +1,19 @@
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020"
"module": "es2022",
"target": "es2022",
"types": [
"./augments.d.ts"
],
"paths": {
"@client/*": ["./foundry/client/*"],
"@common/*": ["./foundry/common/*"],
}
},
"exclude": ["node_modules", "**/node_modules/*"],
"include": ["module/**/*", "foundry.v13.link/client/**/*.js", "foundry.v13.link/**/*.mjs"],
"typeAcquisition": {
"include": ["jquery"]
}
"include": [
"module/**/*",
"foundry/client/client.mjs",
"foundry/client/global.d.mts",
"foundry/common/primitives/global.d.mts"
]
}