@naturalcycles/dev-lib 20.0.2 → 20.0.3
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.
|
@@ -4,13 +4,10 @@
|
|
|
4
4
|
// Shared tsconfig for Backend services
|
|
5
5
|
//
|
|
6
6
|
{
|
|
7
|
-
"extends": "./tsconfig.json",
|
|
7
|
+
"extends": "./tsconfig.src.json",
|
|
8
8
|
"compilerOptions": {
|
|
9
9
|
"paths": {
|
|
10
10
|
"@src/*": ["${configDir}/src/*"]
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
-
// Need to be specified in the project tsconfig
|
|
14
|
-
// "include": ["src"],
|
|
15
|
-
// "exclude": ["**/__exclude"]
|
|
16
13
|
}
|
package/cfg/tsconfig.e2e.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @naturalcycles/dev-lib/cfg/tsconfig.e2e.json
|
|
3
3
|
//
|
|
4
4
|
{
|
|
5
|
-
"extends": "./tsconfig.json",
|
|
5
|
+
"extends": "./tsconfig.src.json",
|
|
6
6
|
"compilerOptions": {
|
|
7
7
|
"rootDir": "${configDir}",
|
|
8
8
|
"baseUrl": "${configDir}",
|
|
@@ -21,6 +21,5 @@
|
|
|
21
21
|
// "@src/*": ["./src/*"],
|
|
22
22
|
// },
|
|
23
23
|
},
|
|
24
|
-
|
|
25
|
-
"exclude": ["**/__exclude"]
|
|
24
|
+
"include": ["${configDir}/e2e"]
|
|
26
25
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// Shared tsconfig for Frontend applications
|
|
5
5
|
//
|
|
6
6
|
{
|
|
7
|
-
"extends": "./tsconfig.json",
|
|
7
|
+
"extends": "./tsconfig.src.json",
|
|
8
8
|
"compilerOptions": {
|
|
9
9
|
"target": "es2023", // es2023+ browsers, adjust to your requirements!
|
|
10
10
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
@@ -14,7 +14,4 @@
|
|
|
14
14
|
"@src/*": ["${configDir}/src/*"]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
// Need to be specified in the project tsconfig
|
|
18
|
-
// "include": ["src"],
|
|
19
|
-
// "exclude": ["**/__exclude"]
|
|
20
17
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @naturalcycles/dev-lib/cfg/tsconfig.scripts.json
|
|
3
3
|
//
|
|
4
4
|
{
|
|
5
|
-
"extends": "./tsconfig.json",
|
|
5
|
+
"extends": "./tsconfig.src.json",
|
|
6
6
|
"compilerOptions": {
|
|
7
7
|
"rootDir": "${configDir}",
|
|
8
8
|
"baseUrl": "${configDir}",
|
|
@@ -12,6 +12,5 @@
|
|
|
12
12
|
},
|
|
13
13
|
"tsBuildInfoFile": "${configDir}/node_modules/.cache/scripts.tsbuildinfo"
|
|
14
14
|
},
|
|
15
|
-
|
|
16
|
-
"exclude": ["**/__exclude"]
|
|
15
|
+
"include": ["${configDir}/scripts"]
|
|
17
16
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
//
|
|
2
|
-
// @naturalcycles/dev-lib/cfg/tsconfig.json
|
|
2
|
+
// @naturalcycles/dev-lib/cfg/tsconfig.src.json
|
|
3
3
|
//
|
|
4
4
|
// Shared tsconfig for Node.js projects
|
|
5
5
|
//
|
|
@@ -54,8 +54,7 @@
|
|
|
54
54
|
"pretty": true,
|
|
55
55
|
"newLine": "lf",
|
|
56
56
|
"experimentalDecorators": true
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
// "exclude": ["**/__exclude"]
|
|
57
|
+
},
|
|
58
|
+
"include": ["${configDir}/src"],
|
|
59
|
+
"exclude": ["${configDir}/**/__exclude"]
|
|
61
60
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/dev-lib",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "20.0.
|
|
4
|
+
"version": "20.0.3",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@biomejs/biome": "^2",
|
|
7
7
|
"@commitlint/cli": "^19",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"./cfg/eslint.config.js": "./cfg/eslint.config.js",
|
|
53
53
|
"./cfg/prettier.config.js": "./cfg/prettier.config.js",
|
|
54
54
|
"./cfg/stylelint.config.js": "./cfg/stylelint.config.js",
|
|
55
|
-
"./cfg/tsconfig.json": "./cfg/tsconfig.json",
|
|
55
|
+
"./cfg/tsconfig.src.json": "./cfg/tsconfig.src.json",
|
|
56
56
|
"./cfg/tsconfig.scripts.json": "./cfg/tsconfig.scripts.json",
|
|
57
57
|
"./cfg/tsconfig.e2e.json": "./cfg/tsconfig.e2e.json",
|
|
58
58
|
"./cfg/tsconfig.backend.json": "./cfg/tsconfig.backend.json",
|