diff --git a/package.json b/package.json index e0e1ad0..a455ab0 100644 --- a/package.json +++ b/package.json @@ -92,14 +92,14 @@ "@types/node": "20.10.5", "@types/shelljs": "0.8.15", "@types/uuid": "9.0.7", - "@typescript-eslint/eslint-plugin": "6.15.0", - "@typescript-eslint/parser": "6.15.0", + "@typescript-eslint/eslint-plugin": "6.16.0", + "@typescript-eslint/parser": "6.16.0", "chai": "4.3.10", "eslint": "8.56.0", "mocha": "10.2.0", "npm-run-all2": "6.1.1", "rimraf": "5.0.5", - "rollup": "2.79.1", + "rollup": "4.9.1", "rollup-plugin-copy": "3.5.0", "terser": "5.26.0", "ts-mocha": "10.0.0", @@ -120,4 +120,4 @@ ], "author": "Christophe CAMENSULI ", "readmeFilename": "README.md" -} \ No newline at end of file +} diff --git a/rollup.config.ts b/rollup.config.ts index 99a9782..3ec3ade 100644 --- a/rollup.config.ts +++ b/rollup.config.ts @@ -101,7 +101,7 @@ function createNodePlugins( return [ nodeResolve({ preferBuiltins: true }), typescript({ - tsconfig: path.resolve(__dirname, 'tsconfig.json'), + tsconfig: path.resolve( 'tsconfig.json'), sourceMap, declaration: declarationDir !== false, declarationDir: declarationDir !== false ? declarationDir : undefined, @@ -139,7 +139,7 @@ function createTstPlugins( return [ nodeResolve({ preferBuiltins: true }), typescript({ - tsconfig: path.resolve(__dirname, 'src','tests','tsconfig.test.json'), + tsconfig: path.resolve( 'src','tests','tsconfig.test.json'), sourceMap, declaration: declarationDir !== false, declarationDir: declarationDir !== false ? declarationDir : undefined,