Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
4256578bc6 | |||
1dd604d572 | |||
262fd6e718 | |||
d660550485 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tsbundle",
|
"name": "@gitzone/tsbundle",
|
||||||
"version": "1.0.46",
|
"version": "1.0.48",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tsbundle",
|
"name": "@gitzone/tsbundle",
|
||||||
"version": "1.0.46",
|
"version": "1.0.48",
|
||||||
"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/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -9,6 +9,7 @@ early.stop();
|
|||||||
|
|
||||||
// lets make this usable programmatically
|
// lets make this usable programmatically
|
||||||
export * from './tsbundle.class.tsbundle';
|
export * from './tsbundle.class.tsbundle';
|
||||||
|
export * from './tsbundle.htmlhandler';
|
||||||
export {
|
export {
|
||||||
runCli
|
runCli
|
||||||
};
|
};
|
||||||
|
@ -33,7 +33,7 @@ export class TsBundle {
|
|||||||
experimentalDecorators: true,
|
experimentalDecorators: true,
|
||||||
inlineSourceMap: true,
|
inlineSourceMap: true,
|
||||||
noEmitOnError: true,
|
noEmitOnError: true,
|
||||||
lib: ['es2017', 'dom'],
|
lib: ['esnext', 'dom'],
|
||||||
target: 'es2017',
|
target: 'es2017',
|
||||||
noImplicitAny: false
|
noImplicitAny: false
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user