@athenna/tsconfig 4.4.0 → 4.5.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.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/tsconfig",
3
- "version": "4.4.0",
3
+ "version": "4.5.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>",
@@ -16,8 +16,8 @@
16
16
  "files": [
17
17
  "src/*.js",
18
18
  "src/**/*.js",
19
- "config/*.json",
20
- "config/**/*.json"
19
+ "*.json",
20
+ "**/*.json"
21
21
  ],
22
22
  "scripts": {},
23
23
  "type": "module",
@@ -25,11 +25,11 @@
25
25
  ".": "./src/index.js",
26
26
  "./package": "./package.json",
27
27
  "./package.json": "./package.json",
28
- "./app": "./config/tsconfig.app.json",
29
- "./app-slim": "./config/tsconfig.app-slim.json",
30
- "./base": "./config/tsconfig.base.json",
31
- "./lib": "./config/tsconfig.lib.json",
32
- "./lib-build": "./config/tsconfig.lib-build.json"
28
+ "./tsconfig.app.json": "./tsconfig.app.json",
29
+ "./tsconfig.app-slim.json": "./tsconfig.app-slim.json",
30
+ "./tsconfig.base.json": "./tsconfig.base.json",
31
+ "./tsconfig.lib.json": "./tsconfig.lib.json",
32
+ "./tsconfig.lib-build.json": "./tsconfig.lib-build.json"
33
33
  },
34
34
  "devDependencies": {
35
35
  "commitizen": "^4.2.6",
@@ -4,9 +4,9 @@
4
4
  "declaration": false,
5
5
  "sourceMap": true,
6
6
  "paths": {
7
- "#bin/*": ["../../../../bin/*.ts"],
8
- "#src/*": ["../../../../src/*.ts"],
9
- "#tests/*": ["../../../../tests/*.ts"]
7
+ "#bin/*": ["../../../bin/*.ts"],
8
+ "#src/*": ["../../../src/*.ts"],
9
+ "#tests/*": ["../../../tests/*.ts"]
10
10
  }
11
11
  }
12
12
  }
@@ -0,0 +1,20 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "declaration": false,
5
+ "sourceMap": true,
6
+ "paths": {
7
+ "#app/*": ["../../../app/*.ts"],
8
+ "#bootstrap/*": ["../../../bootstrap/*.ts"],
9
+ "#config/*": ["../../../config/*.ts"],
10
+ "#database/*": ["../../../database/*.ts"],
11
+ "#lang/*": ["../../../lang/*.ts"],
12
+ "#providers/*": ["../../../providers/*.ts"],
13
+ "#facades/*": ["../../../facades/*.ts"],
14
+ "#resources/*": ["../../../resources/*.ts"],
15
+ "#routes/*": ["../../../routes/*.ts"],
16
+ "#storage/*": ["../../../storage/*.ts"],
17
+ "#tests/*": ["../../../tests/*.ts"]
18
+ }
19
+ }
20
+ }
@@ -6,9 +6,9 @@
6
6
  },
7
7
  "compilerOptions": {
8
8
  "strict": false,
9
- "rootDir": "../../../../",
10
- "baseUrl": "../../../../",
11
- "outDir": "../../../../build",
9
+ "rootDir": "../../../",
10
+ "baseUrl": "../../../",
11
+ "outDir": "../../../build",
12
12
  "module": "NodeNext",
13
13
  "target": "ESNext",
14
14
  "moduleResolution": "NodeNext",
@@ -22,6 +22,6 @@
22
22
  "verbatimModuleSyntax": true,
23
23
  "forceConsistentCasingInFileNames": true
24
24
  },
25
- "include": ["../../../../**/*"],
26
- "exclude": ["../../../../build", "../../../../node_modules"]
25
+ "include": ["../../../**/*"],
26
+ "exclude": ["../../../build", "../../../node_modules"]
27
27
  }
@@ -0,0 +1,14 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "include": [
4
+ "../../../src",
5
+ "../../../templates",
6
+ "../../../configurer"
7
+ ],
8
+ "exclude": [
9
+ "../../../bin",
10
+ "../../../build",
11
+ "../../../tests",
12
+ "../../../node_modules"
13
+ ]
14
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "removeComments": false,
6
+ "paths": {
7
+ "#bin/*": ["../../../bin/*.ts"],
8
+ "#src/*": ["../../../src/*.ts"],
9
+ "#tests/*": ["../../../tests/*.ts"],
10
+ "#src/types": ["../../../src/types/index.ts"],
11
+ "#src/debug": ["../../../src/debug/index.ts"]
12
+ }
13
+ }
14
+ }
@@ -1,20 +0,0 @@
1
- {
2
- "extends": "./tsconfig.base.json",
3
- "compilerOptions": {
4
- "declaration": false,
5
- "sourceMap": true,
6
- "paths": {
7
- "#app/*": ["../../../../app/*.ts"],
8
- "#bootstrap/*": ["../../../../bootstrap/*.ts"],
9
- "#config/*": ["../../../../config/*.ts"],
10
- "#database/*": ["../../../../database/*.ts"],
11
- "#lang/*": ["../../../../lang/*.ts"],
12
- "#providers/*": ["../../../../providers/*.ts"],
13
- "#facades/*": ["../../../../facades/*.ts"],
14
- "#resources/*": ["../../../../resources/*.ts"],
15
- "#routes/*": ["../../../../routes/*.ts"],
16
- "#storage/*": ["../../../../storage/*.ts"],
17
- "#tests/*": ["../../../../tests/*.ts"]
18
- }
19
- }
20
- }
@@ -1,14 +0,0 @@
1
- {
2
- "extends": "../../../../tsconfig.json",
3
- "include": [
4
- "../../../../src",
5
- "../../../../templates",
6
- "../../../../configurer"
7
- ],
8
- "exclude": [
9
- "../../../../bin",
10
- "../../../../build",
11
- "../../../../tests",
12
- "../../../../node_modules"
13
- ]
14
- }
@@ -1,14 +0,0 @@
1
- {
2
- "extends": "./tsconfig.base.json",
3
- "compilerOptions": {
4
- "declaration": true,
5
- "removeComments": false,
6
- "paths": {
7
- "#bin/*": ["../../../../bin/*.ts"],
8
- "#src/*": ["../../../../src/*.ts"],
9
- "#tests/*": ["../../../../tests/*.ts"],
10
- "#src/types": ["../../../../src/types/index.ts"],
11
- "#src/debug": ["../../../../src/debug/index.ts"]
12
- }
13
- }
14
- }