Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
eeeac6cb7f | |||
c0d05bab7f |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tsbundle",
|
"name": "@gitzone/tsbundle",
|
||||||
"version": "1.0.65",
|
"version": "1.0.66",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tsbundle",
|
"name": "@gitzone/tsbundle",
|
||||||
"version": "1.0.65",
|
"version": "1.0.66",
|
||||||
"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",
|
||||||
|
@ -36,7 +36,8 @@ export class TsBundle {
|
|||||||
noEmitOnError: true,
|
noEmitOnError: true,
|
||||||
lib: ['esnext', 'dom', 'es2017.object'],
|
lib: ['esnext', 'dom', 'es2017.object'],
|
||||||
noImplicitAny: false,
|
noImplicitAny: false,
|
||||||
target: 'es2018'
|
target: 'es2018',
|
||||||
|
allowSyntheticDefaultImports: true
|
||||||
}),
|
}),
|
||||||
// Allow node_modules resolution, so you can use 'external' to control
|
// Allow node_modules resolution, so you can use 'external' to control
|
||||||
// which external modules to include in the bundle
|
// which external modules to include in the bundle
|
||||||
|
Reference in New Issue
Block a user