mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* FEAT: add jsconfig.json file * FEAT: add new script createSymlink FEAT: add new file tools/create-symlink.mjs FEAT: add d.ts files FIX: add new foundry symlink to .gitignore --------- Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com>
15 lines
412 B
JSON
15 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ES6",
|
|
"target": "ES6",
|
|
"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"]
|
|
}
|
|
}
|