@athenna/tsconfig 4.9.1 → 4.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/tsconfig",
3
- "version": "4.9.1",
3
+ "version": "4.9.2",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/tsconfig",
3
- "version": "4.9.1",
3
+ "version": "4.9.2",
4
4
  "description": "Exports the base TypeScript configuration for Athena applications and packages.",
5
5
  "license": "MIT",
6
6
  "author": "João Lenon <lenon@athenna.io>",
package/src/tsc.js CHANGED
@@ -17,7 +17,7 @@ import lodash from 'lodash'
17
17
  */
18
18
  export async function tsc(tsConfigPath) {
19
19
  const originalArgv = lodash.cloneDeep(process.argv)
20
- const originalExit = lodash.cloneDeep(process.exit)
20
+ const originalExit = process.exit
21
21
 
22
22
  process.exit = () => {}
23
23