Add scripts and infra required to get Foundry intellisense working

This commit is contained in:
Eldritch-Oliver 2025-09-28 00:45:48 -06:00
parent 2cb4268400
commit e84e921bec
5 changed files with 79 additions and 2 deletions

View file

@ -1,10 +1,22 @@
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020"
"target": "ES2020",
"types": [
"./augments.d.ts"
],
"paths": {
"@client/*": ["./foundry/client/*"],
"@common/*": ["./foundry/common/*"],
}
},
"exclude": ["node_modules", "**/node_modules/*"],
"include": ["module/**/*"],
"include": [
"module/**/*",
"foundry/client/client.mjs",
"foundry/client/global.d.mts",
"foundry/common/primitives/global.d.mts"
],
"typeAcquisition": {
"include": ["joi"]
}