@naturalcycles/dev-lib 19.34.1 → 19.34.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.
@@ -5,7 +5,11 @@
5
5
  //
6
6
  {
7
7
  "extends": "./tsconfig.json",
8
- "compilerOptions": {}
8
+ "compilerOptions": {
9
+ "paths": {
10
+ "@src/*": ["${configDir}/src/*"]
11
+ }
12
+ }
9
13
  // Need to be specified in the project tsconfig
10
14
  // "include": ["src"],
11
15
  // "exclude": ["**/__exclude"]
@@ -9,7 +9,10 @@
9
9
  "target": "es2023", // es2023+ browsers, adjust to your requirements!
10
10
  "lib": ["esnext", "dom", "dom.iterable"],
11
11
  "module": "esnext",
12
- "moduleResolution": "bundler"
12
+ "moduleResolution": "bundler",
13
+ "paths": {
14
+ "@src/*": ["${configDir}/src/*"]
15
+ }
13
16
  }
14
17
  // Need to be specified in the project tsconfig
15
18
  // "include": ["src"],
package/cfg/tsconfig.json CHANGED
@@ -8,9 +8,6 @@
8
8
  "rootDir": "${configDir}/src",
9
9
  "baseUrl": "${configDir}/src",
10
10
  "outDir": "${configDir}/dist",
11
- "paths": {
12
- "@src/*": ["${configDir}/src/*"]
13
- },
14
11
  // Target/module
15
12
  "target": "es2023",
16
13
  "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.34.1",
4
+ "version": "19.34.2",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^19",