Skip to content

Commit f041e45

Browse files
Switch to tsc (#170)
- Add `sourcesContent` to source maps
1 parent 770b4d2 commit f041e45

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tsconfig.base.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
"outDir": "dist",
1010
"strict": true,
1111
"esModuleInterop": true,
12-
"noImplicitAny": false,
13-
"removeComments": true,
14-
"sourceMap": true
12+
"noImplicitAny": false
1513
}
1614
}

tsconfig.build.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
44
"baseUrl": ".",
5-
"rootDir": "src"
5+
"rootDir": "src",
6+
"removeComments": true,
7+
"sourceMap": true,
8+
"inlineSources": true
69
},
710
"include": ["src"],
811
"exclude": ["src/vendor"]

0 commit comments

Comments
 (0)