Skip to content

Commit

Permalink
Enable source-maps as per @chriseppstein’s PR #91
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpenner committed Apr 29, 2019
1 parent d46e9c1 commit 67a560b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,4 +2,5 @@ node_modules
tmp
*.js
*.d.ts
*.map
!types/
9 changes: 5 additions & 4 deletions tsconfig.json
@@ -1,13 +1,14 @@
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"strict": true,
"moduleResolution": "node",
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"paths": {
"*": ["types/*"]
},
"baseUrl": "."
"sourceMap": true,
"strict": true,
"target": "es5"
}
}

0 comments on commit 67a560b

Please sign in to comment.