Skip to content

Commit

Permalink
Merge pull request #230 from snelsi/bug/228-fix-sourcemaps-generation
Browse files Browse the repository at this point in the history
[228] Fix SourceMaps generation
  • Loading branch information
maslianok authored Jan 19, 2023
2 parents 4b4d852 + 5e776dd commit e5308a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import packageJson from './package.json' assert { type: 'json' };
const getOutput = (path, format) => ({
file: path,
format: format,
sourcemap: true,
compact: true,
exports: 'named'
});
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noImplicitAny": false,
"skipLibCheck": true
"skipLibCheck": true,
"inlineSources": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build", "src/**/*.test.tsx"]
Expand Down

0 comments on commit e5308a6

Please sign in to comment.