Skip to content

Commit

Permalink
build: enable inlineSources option in TS config
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
NoNameProvided committed Feb 13, 2021
1 parent 0b074a4 commit a9658ac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"rootDir": "./src",
"strict": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": false,
"esModuleInterop": true,
"experimentalDecorators": true,
Expand Down

0 comments on commit a9658ac

Please sign in to comment.