chore: remove source maps from rollup jobs

This commit is contained in:
mathuo 2023-04-11 20:43:38 +01:00
parent 75da885f91
commit d20689170d
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281
2 changed files with 7 additions and 2 deletions

View File

@ -57,10 +57,13 @@ function createBundle(format, options) {
].join('\n'),
};
const plugins = [
typescript({
tsconfig: 'tsconfig.esm.json',
sourceMap: false,
compilerOptions: {
declaration: false,
},
}),
];

View File

@ -64,7 +64,9 @@ function createBundle(format, options) {
}),
typescript({
tsconfig: 'tsconfig.esm.json',
sourceMap: false,
compilerOptions: {
declaration: false,
},
}),
];