jellyfin-sdk-typescript/tsconfig.json
2022-03-15 00:10:08 -04:00

25 lines
429 B
JSON

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