Update scripts to allow auto-linking of Foundry source for intellisense

This commit is contained in:
Eldritch-Oliver 2025-09-28 00:34:49 -06:00
parent 65cc95c35c
commit 6866bea131
7 changed files with 66 additions and 8 deletions

View file

@ -1,7 +1,19 @@
{
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"types": [
"./augments.d.ts"
]
}
],
"paths": {
"@client/*": ["./foundry/client/*"],
"@common/*": ["./foundry/common/*"],
}
},
"include": [
"module/main.mjs",
"foundry/client/client.mjs",
"foundry/client/global.d.mts",
"foundry/common/primitives/global.d.mts"
]
}