daggerheart/jsconfig.json
Carlos Fernandez 96f090bef5
Some checks failed
Project CI / build (24.x) (push) Has been cancelled
Enable no unused vars and add more types (#2005)
2026-06-14 22:10:49 +02:00

15 lines
438 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", "module/**/*.d.ts"],
"typeAcquisition": {
"include": ["jquery"]
}
}