Set up testing with Vitest and jsdom and add unit tests for importers (jellyfin, playnite, stashapp, xbvr). Add typedoc configuration and update vite.config.ts and importer source files to support the tests. Ignore generated docs by adding /docs to .gitignore and add test-related devDependencies (vitest, @vitest/ui, jsdom, typedoc) in package.json.
27 lines
606 B
JSON
27 lines
606 B
JSON
{
|
|
"$schema": "https://typedoc.org/schema.json",
|
|
"entryPoints": [
|
|
"./src/lib/playniteImporter.ts",
|
|
"./src/lib/stashappImporter.ts",
|
|
"./src/lib/jellyfinImporter.ts",
|
|
"./src/lib/xbvrImporter.ts"
|
|
],
|
|
"out": "docs",
|
|
"name": "Kyoo Importer Documentation",
|
|
"theme": "default",
|
|
"excludePrivate": true,
|
|
"excludeProtected": false,
|
|
"excludeInternal": true,
|
|
"hideGenerator": true,
|
|
"sort": ["source-order"],
|
|
"categorizeByGroup": true,
|
|
"defaultCategory": "Other",
|
|
"categoryOrder": [
|
|
"Configuration",
|
|
"Types",
|
|
"Functions",
|
|
"Other"
|
|
],
|
|
"readme": "README.md"
|
|
}
|