Skip to content

Commit 8a64208

Browse files
build: enable inlineSources option in TS config
To prevent various reference errors to non-existent TS files when consuming the package we have to enable source map inlining. This option allows the TS source code to be inlined into the generated sourcemap.
1 parent f95a563 commit 8a64208

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"rootDir": "./src",
99
"strict": true,
1010
"sourceMap": true,
11+
"inlineSources": true,
1112
"removeComments": false,
1213
"esModuleInterop": true,
1314
"experimentalDecorators": true,

0 commit comments

Comments
 (0)