1
0
mirror of https://github.com/redis/node-redis.git synced 2025-09-18 17:14:32 +03:00
Files
node-redis/packages/entraid/tsconfig.json
Bobby I. a7c96a01f8 fix (entraid): correct package entry point structure (#2917)
- last time we forgot to include `index.ts`
2025-03-25 13:50:16 +02:00

22 lines
371 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist"
},
"include": [
"./lib/**/*.ts",
"./index.ts"
],
"exclude": [
"./lib/**/*.spec.ts",
"./lib/test-util.ts",
],
"typedocOptions": {
"entryPoints": [
"./lib"
],
"entryPointStrategy": "expand",
"out": "../../documentation/entraid"
}
}