jellyfin-sdk-typescript/tsconfig.json
Fernando Fernández 2554eafc1b
Address ES2015 versioning comments and breaking changes
* Add the switch to ES6/ES2015 to the breaking changes section of the readme
* Add the switch to Axios v1 major version to the breaking changes section of the readme
2022-12-04 22:38:34 +00:00

28 lines
523 B
JSON

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