fvtt-types
Version:
TypeScript type definitions for Foundry VTT
10 lines (9 loc) • 498 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.base.json",
// Annoyingly, TypeScript doesn't include hidden files by default for whatever reason.
"include": ["**/*", ".*", ".**/**/*"],
// `src/index-lenient.d.mts` is skipped because it sets `AssumeHookRan` which has some pretty global effects that would make it easy to write broken code.
// `tests` are excluded to speed up typechecking.
"exclude": ["src/index-lenient.d.mts", "tests", "cvise"]
}