@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 +12 -0
- package/dist/browser.json +1 -1
- package/dist/node-ts.json +4 -2
- package/dist/node.json +1 -1
- package/package.json +1 -1
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
package/dist/node-ts.json
CHANGED
|
@@ -7,10 +7,12 @@
|
|
|
7
7
|
"target": "ESNext",
|
|
8
8
|
"moduleResolution": "NodeNext",
|
|
9
9
|
"module": "NodeNext",
|
|
10
|
-
"
|
|
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