jellyfin-sdk-typescript/tsconfig.json
2021-10-08 13:34:40 -04:00

25 lines
430 B
JSON

{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "ES5",
"declaration": true,
"noImplicitAny": true,
"outDir": "dist"
},
"typedocOptions": {
"entryPoints": [
"./src/index.ts",
"./src/generated-client/index.ts"
],
"out": "docs"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/__tests__",
"**/__helpers__"
]
}