mondarth-campaign/tsconfig.json
Ulenar of Mondarth 6803c8336b
Some checks failed
Build and Deploy Docs / build (push) Failing after 1m41s
Bump version / Bump version and create changelog with commitizen (push) Failing after 7s
chore: initial commit
2025-07-14 18:00:35 +00:00

19 lines
494 B
JSON

{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"types": ["svelte", "@league-of-foundry-developers/foundry-vtt-types", "node", "vitest/importMeta"],
"strict": true,
"strictNullChecks": true,
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@lib/*": ["src/lib/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
}