mirror of
https://github.com/jellyfin/jellyfin-sdk-typescript.git
synced 2024-11-23 05:59:44 +00:00
23 lines
396 B
JSON
23 lines
396 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"./src/index.ts",
|
|
"./src/models/index.ts",
|
|
"./src/generated-client/index.ts"
|
|
],
|
|
"out": "docs"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/__tests__"
|
|
]
|
|
}
|