Skip to content

Commit

Permalink
in tsconfig, set sourceMap=true for debugging (palantir#1690)
Browse files Browse the repository at this point in the history
  • Loading branch information
nchen63 authored Nov 6, 2016
1 parent f425858 commit 1b76b85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ tslint.json
/src/
/test/
tscommand*.txt
*.js.map
2 changes: 1 addition & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"declaration": true,
"sourceMap": false,
"sourceMap": true,
"target": "es5",
"outDir": "../lib"
}
Expand Down
2 changes: 1 addition & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"noImplicitAny": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"sourceMap": false,
"sourceMap": true,
"target": "es5",
"outDir": "../build"
},
Expand Down

0 comments on commit 1b76b85

Please sign in to comment.