Compare commits

...

4 Commits

Author SHA1 Message Date
f0bdfa9a65 1.2.45 2023-08-26 13:32:29 +02:00
a88cf067a1 fix(core): update 2023-08-26 13:32:28 +02:00
c5cd30e20e 1.2.44 2023-07-13 02:53:32 +02:00
02eb0c5435 fix(core): update 2023-07-13 02:53:31 +02:00
4 changed files with 400 additions and 457 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsrun",
"version": "1.2.43",
"name": "@git.zone/tsrun",
"version": "1.2.45",
"description": "run typescript programs efficiently",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
@ -17,16 +17,16 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@push.rocks/smartcli": "^4.0.6",
"@types/node": "^20.2.5",
"node-fetch": "^3.3.1"
"@gitzone/tsbuild": "^2.1.66",
"@push.rocks/smartcli": "^4.0.8",
"@types/node": "^20.5.6",
"node-fetch": "^3.3.2"
},
"dependencies": {
"@push.rocks/smartfile": "^10.0.7",
"@push.rocks/smartfile": "^10.0.30",
"@push.rocks/smartshell": "^3.0.3",
"ts-node": "^10.8.1",
"typescript": "^5.1.3"
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"private": false,
"files": [

833
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@gitzone/tsrun',
version: '1.2.43',
name: '@git.zone/tsrun',
version: '1.2.45',
description: 'run typescript programs efficiently'
}

View File

@ -10,7 +10,7 @@ const defaultTsNodeOptions: plugins.tsNode.CreateOptions = {
esModuleInterop: true,
strictNullChecks: false,
moduleResolution: <any>'nodenext',
module: <any>'ESNext',
module: <any>'nodenext',
verbatimModuleSyntax: true,
} as CompilerOptions,
esm: true,