2021-08-29 05:00:52 +00:00
|
|
|
{
|
|
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2022-12-04 22:38:16 +00:00
|
|
|
"target": "ES2015",
|
|
|
|
"module": "ES2015",
|
2022-11-29 14:31:17 +00:00
|
|
|
"moduleResolution": "Node",
|
2021-08-29 05:00:52 +00:00
|
|
|
"declaration": true,
|
2021-09-24 13:37:29 +00:00
|
|
|
"noImplicitAny": true,
|
2022-03-15 04:10:08 +00:00
|
|
|
"outDir": "lib"
|
2021-08-29 05:00:52 +00:00
|
|
|
},
|
2021-09-15 04:04:48 +00:00
|
|
|
"typedocOptions": {
|
|
|
|
"entryPoints": [
|
2023-03-27 16:18:06 +00:00
|
|
|
"src/index.ts",
|
|
|
|
"src/generated-client/index.ts",
|
|
|
|
"src/models/api/index.ts",
|
|
|
|
"src/utils/api/index.ts"
|
2021-09-15 04:04:48 +00:00
|
|
|
],
|
|
|
|
"out": "docs"
|
|
|
|
},
|
2021-08-29 05:00:52 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-09-24 13:37:29 +00:00
|
|
|
"**/__tests__",
|
|
|
|
"**/__helpers__"
|
2021-08-29 05:00:52 +00:00
|
|
|
]
|
|
|
|
}
|