@4mbl/tsconfig 4.2.0 → 4.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @4mbl/tsconfig Changelog
2
2
 
3
+ ## 4.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 05ab9ba: [browser,node,node-ts] Replace `baseUrl` with `paths` catch-all to improve TypeScript 7 support.
8
+
9
+ ## 4.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - ce274df: node-ts: add rewriteRelativeImportExtensions
14
+
3
15
  ## 4.2.0
4
16
 
5
17
  ### Minor Changes
package/dist/browser.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "jsx": "react-jsx",
8
8
  "module": "ESNext",
9
9
  "moduleResolution": "Bundler",
10
- "baseUrl": "${configDir}/src",
10
+ "paths": { "*": ["${configDir}/src/*"] },
11
11
  "noEmit": true,
12
12
  "sourceMap": true
13
13
  }
package/dist/node-ts.json CHANGED
@@ -7,10 +7,12 @@
7
7
  "target": "ESNext",
8
8
  "moduleResolution": "NodeNext",
9
9
  "module": "NodeNext",
10
- "baseUrl": "${configDir}/src",
10
+ "paths": { "*": ["${configDir}/src/*"] },
11
11
 
12
12
  // options for typescript-only
13
+ // https://nodejs.org/api/typescript.html#type-stripping
13
14
  "noEmit": true,
14
- "allowImportingTsExtensions": true
15
+ "allowImportingTsExtensions": true,
16
+ "rewriteRelativeImportExtensions": true
15
17
  }
16
18
  }
package/dist/node.json CHANGED
@@ -6,6 +6,6 @@
6
6
  "target": "ESNext",
7
7
  "moduleResolution": "NodeNext",
8
8
  "module": "NodeNext",
9
- "baseUrl": "${configDir}/src"
9
+ "paths": { "*": ["${configDir}/src/*"] }
10
10
  }
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/tsconfig",
3
- "version": "4.2.0",
3
+ "version": "4.4.0",
4
4
  "description": "Strict TypeScript configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",