daggerheart/jsconfig.json
Carlos Fernandez a4428fd5be
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
Replace prettier with stylistic, improve types, and add no-undef rule (#1975)
2026-06-05 15:53:15 -04:00

15 lines
418 B
JSON

{
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"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"]
}
}