@naturalcycles/dev-lib 19.33.0 → 19.33.1

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,11 +4,8 @@
4
4
  // Shared tsconfig for Backend services
5
5
  //
6
6
  {
7
- "compilerOptions": {
8
- "paths": {
9
- "@src/*": ["${configDir}/src/*"]
10
- }
11
- }
7
+ "extends": "./tsconfig.json",
8
+ "compilerOptions": {}
12
9
  // Need to be specified in the project tsconfig
13
10
  // "include": ["src"],
14
11
  // "exclude": ["**/__exclude"]
@@ -4,6 +4,7 @@
4
4
  // Shared tsconfig for Frontend applications
5
5
  //
6
6
  {
7
+ "extends": "./tsconfig.json",
7
8
  "compilerOptions": {
8
9
  "noEmit": true,
9
10
  "target": "es2023", // es2023+ browsers, adjust to your requirements!
package/cfg/tsconfig.json CHANGED
@@ -8,6 +8,9 @@
8
8
  "rootDir": "${configDir}/src",
9
9
  "baseUrl": "${configDir}/src",
10
10
  "outDir": "${configDir}/dist",
11
+ "paths": {
12
+ "@src/*": ["${configDir}/src/*"]
13
+ },
11
14
  // Target/module
12
15
  "target": "es2023",
13
16
  "lib": ["esnext"], // add "dom" if needed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "19.33.0",
4
+ "version": "19.33.1",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^19",