Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
09a470d409 | |||
c0f23deab8 | |||
e92758586f |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbundle",
|
"name": "@git.zone/tsbundle",
|
||||||
"version": "2.2.6",
|
"version": "2.2.8",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a bundler using rollup for painless bundling of web projects",
|
"description": "a bundler using rollup for painless bundling of web projects",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -39,7 +39,8 @@ export class TsBundleProcess {
|
|||||||
target: 'es2022',
|
target: 'es2022',
|
||||||
entryNames: plugins.path.parse(toArg).name,
|
entryNames: plugins.path.parse(toArg).name,
|
||||||
outdir: plugins.path.parse(toArg).dir,
|
outdir: plugins.path.parse(toArg).dir,
|
||||||
// splitting: true,
|
splitting: false,
|
||||||
|
treeShaking: false,
|
||||||
tsconfig: paths.tsconfigPath,
|
tsconfig: paths.tsconfigPath,
|
||||||
alias: await this.getAliases(),
|
alias: await this.getAliases(),
|
||||||
});
|
});
|
||||||
@ -63,7 +64,8 @@ export class TsBundleProcess {
|
|||||||
entryNames: 'bundle',
|
entryNames: 'bundle',
|
||||||
outdir: plugins.path.parse(toArg).dir,
|
outdir: plugins.path.parse(toArg).dir,
|
||||||
tsconfig: paths.tsconfigPath,
|
tsconfig: paths.tsconfigPath,
|
||||||
// splitting: true,
|
splitting: false,
|
||||||
|
treeShaking: false,
|
||||||
chunkNames: 'chunks/[name]-[hash]',
|
chunkNames: 'chunks/[name]-[hash]',
|
||||||
alias: await this.getAliases(),
|
alias: await this.getAliases(),
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user