Skip to content

Commit

Permalink
Update TypeScript Config to include only ./src
Browse files Browse the repository at this point in the history
pika pack doesn't seem to know how to combine multiple globs from `include` in tsconfig into a single `index.d.ts` file, which causes types to be missing.

For now, exporting types for the ready to consume lambda handler is not strictly needed.
  • Loading branch information
Saeris committed Aug 23, 2020
1 parent 3d5d860 commit 20dc37a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"moduleResolution": "node",
"sourceMap": true
},
"include": ["./src/**/*", "./lambda/**/*"],
"include": ["./src/**/*"],
"exclude": [
"node_modules", "**/__MOCKS__/**/*", "**/__TEST__/**/*", "**/*.spec.ts"
]
Expand Down

0 comments on commit 20dc37a

Please sign in to comment.