@athenna/tsconfig 4.9.1 → 4.10.0

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.10.0",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
@@ -50,9 +50,9 @@
50
50
  "optional": true
51
51
  },
52
52
  "@commitlint/load": {
53
- "version": "17.7.2",
54
- "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.7.2.tgz",
55
- "integrity": "sha512-XA7WTnsjHZ4YH6ZYsrnxgLdXzriwMMq+utZUET6spbOEEIPBCDLdOQXS26P+v3TTO4hUHOEhzUquaBv3jbBixw==",
53
+ "version": "17.8.0",
54
+ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.8.0.tgz",
55
+ "integrity": "sha512-9VnGXYJCP4tXmR4YrwP8n5oX6T5ZsHfPQq6WuUQOvAI+QsDQMaTGgTRXr7us+xsjz+b+mMBSagogqfUx2aixyw==",
56
56
  "dev": true,
57
57
  "optional": true,
58
58
  "requires": {
@@ -1760,9 +1760,9 @@
1760
1760
  "optional": true
1761
1761
  },
1762
1762
  "resolve": {
1763
- "version": "1.22.6",
1764
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz",
1765
- "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==",
1763
+ "version": "1.22.8",
1764
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
1765
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
1766
1766
  "dev": true,
1767
1767
  "requires": {
1768
1768
  "is-core-module": "^2.13.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/tsconfig",
3
- "version": "4.9.1",
3
+ "version": "4.10.0",
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>",
@@ -28,6 +28,7 @@
28
28
  "./tsc": "./src/tsc.js",
29
29
  "./copyfiles": "./src/copyfiles.js",
30
30
  "./tsconfig.app.json": "./tsconfig.app.json",
31
+ "./tsconfig.app-build.json": "./tsconfig.app-build.json",
31
32
  "./tsconfig.app-slim.json": "./tsconfig.app-slim.json",
32
33
  "./tsconfig.base.json": "./tsconfig.base.json",
33
34
  "./tsconfig.lib.json": "./tsconfig.lib.json",
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
 
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "exclude": [
4
+ "../../../build",
5
+ "../../../tests",
6
+ "../../../node_modules"
7
+ ]
8
+ }
package/tsconfig.app.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "#database/*": ["../../../database/*.ts"],
11
11
  "#lang/*": ["../../../lang/*.ts"],
12
12
  "#providers/*": ["../../../providers/*.ts"],
13
- "#facades/*": ["../../../facades/*.ts"],
13
+ "#facades/*": ["../../../providers/facades/*.ts"],
14
14
  "#resources/*": ["../../../resources/*.ts"],
15
15
  "#routes/*": ["../../../routes/*.ts"],
16
16
  "#storage/*": ["../../../storage/*.ts"],