Skip to content

Commit dad54f4

Browse files
pranshuchittoraematipico
authored andcommitted
chore(ts): enables source map in the ts (#961)
enables the source maps for the ts compiled files for easy debugging
1 parent d7cdab9 commit dad54f4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@ yarn.lock
3838
# source maps of docs
3939
docs/**/*.map
4040
junit.xml
41+
42+
#typescript source maps
43+
packages/**/*.map

tsconfig.base.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"skipLibCheck": true,
77
"target": "es6",
88
"lib": ["es6", "es2017"],
9-
"resolveJsonModule": true
9+
"resolveJsonModule": true,
10+
"sourceMap": true
1011
},
1112
"include": ["packages/**/*.ts"],
1213
"exclude": [

0 commit comments

Comments
 (0)