Skip to content

Commit

Permalink
chore(ts): enables source map in the ts (#961)
Browse files Browse the repository at this point in the history
enables the source maps for the ts compiled files for easy debugging
  • Loading branch information
pranshuchittora authored and ematipico committed Jun 19, 2019
1 parent d7cdab9 commit dad54f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -38,3 +38,6 @@ yarn.lock
# source maps of docs
docs/**/*.map
junit.xml

#typescript source maps
packages/**/*.map
3 changes: 2 additions & 1 deletion tsconfig.base.json
Expand Up @@ -6,7 +6,8 @@
"skipLibCheck": true,
"target": "es6",
"lib": ["es6", "es2017"],
"resolveJsonModule": true
"resolveJsonModule": true,
"sourceMap": true
},
"include": ["packages/**/*.ts"],
"exclude": [
Expand Down

0 comments on commit dad54f4

Please sign in to comment.