Skip to content

Commit

Permalink
fix(generators): Add sourceMap to tsconfig.json template (#3166)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanbrizzee-cdcr committed Apr 28, 2023
1 parent 06919cf commit 3049b7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/generators/src/app/templates/tsconfig.json.tpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export const generate = (ctx: AppGeneratorContext) =>
rootDir: `./${lib}`,
declaration: true,
strict: true,
esModuleInterop: true
esModuleInterop: true,
sourceMap: true
},
include: [lib],
exclude: ['test']
Expand Down

0 comments on commit 3049b7a

Please sign in to comment.