fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-11 17:56:08 +01:00
parent 6d4c9f390a
commit e89c3eda66
3 changed files with 10 additions and 8 deletions

14
package-lock.json generated
View File

@ -17,7 +17,7 @@
"tsrun": "cli.js" "tsrun": "cli.js"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.29", "@gitzone/tsbuild": "2.1.29",
"@types/node": "^17.0.21", "@types/node": "^17.0.21",
"node-fetch": "^3.2.2", "node-fetch": "^3.2.2",
"tslint": "^6.1.2", "tslint": "^6.1.2",
@ -367,9 +367,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@pushrocks/smartpromise": { "node_modules/@pushrocks/smartpromise": {
"version": "3.1.6", "version": "3.1.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.6.tgz", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz",
"integrity": "sha512-v+RyVpspzYuBcV/aWXqwC03TWYeFLj7aWMG3IBDFmH2ssgug+82KLW/gw2WB2aVOEvmSkfI9OVvOQz2OsLbYlA==", "integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/@pushrocks/smartrequest": { "node_modules/@pushrocks/smartrequest": {
@ -2054,9 +2054,9 @@
"integrity": "sha512-KWz4DWOrB0sPfk6L4i+CPOo+UK5HXNaLI7ZAaqJe1nEWoDrpyeds1dNDaqVAmSgX4riLGxVpslKH5MnABCPsPg==" "integrity": "sha512-KWz4DWOrB0sPfk6L4i+CPOo+UK5HXNaLI7ZAaqJe1nEWoDrpyeds1dNDaqVAmSgX4riLGxVpslKH5MnABCPsPg=="
}, },
"@pushrocks/smartpromise": { "@pushrocks/smartpromise": {
"version": "3.1.6", "version": "3.1.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.6.tgz", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz",
"integrity": "sha512-v+RyVpspzYuBcV/aWXqwC03TWYeFLj7aWMG3IBDFmH2ssgug+82KLW/gw2WB2aVOEvmSkfI9OVvOQz2OsLbYlA==" "integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w=="
}, },
"@pushrocks/smartrequest": { "@pushrocks/smartrequest": {
"version": "1.1.52", "version": "1.1.52",

View File

@ -4,6 +4,7 @@
"description": "run typescript programs efficiently", "description": "run typescript programs efficiently",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",
"bin": { "bin": {
@ -15,7 +16,7 @@
"build": "(tsbuild)" "build": "(tsbuild)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.29", "@gitzone/tsbuild": "2.1.29",
"@types/node": "^17.0.21", "@types/node": "^17.0.21",
"node-fetch": "^3.2.2", "node-fetch": "^3.2.2",
"tslint": "^6.1.2", "tslint": "^6.1.2",

View File

@ -14,6 +14,7 @@ const defaultTsNodeOptions: tsNode.CreateOptions = {
importsNotUsedAsValues: <any>'preserve', importsNotUsedAsValues: <any>'preserve',
} as CompilerOptions, } as CompilerOptions,
skipIgnore: true, skipIgnore: true,
esm: true,
}; };
tsNode.register(defaultTsNodeOptions); tsNode.register(defaultTsNodeOptions);