@ocavue/tsconfig 0.3.6 → 0.3.7
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 +7 -0
- package/dom/build-bundler.json +2 -8
- package/es/build-bundler.json +2 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.7](https://github.com/ocavue/tsconfig/compare/v0.3.6...v0.3.7) (2025-04-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct `outDir` for build-bundler.json ([#21](https://github.com/ocavue/tsconfig/issues/21)) ([efab1c3](https://github.com/ocavue/tsconfig/commit/efab1c3bbca4024e9997803efed6297bb19782b6))
|
|
9
|
+
|
|
3
10
|
## [0.3.6](https://github.com/ocavue/tsconfig/compare/v0.3.5...v0.3.6) (2025-04-17)
|
|
4
11
|
|
|
5
12
|
|
package/dom/build-bundler.json
CHANGED
|
@@ -50,14 +50,8 @@
|
|
|
50
50
|
"moduleResolution": "bundler",
|
|
51
51
|
"emitDeclarationOnly": true,
|
|
52
52
|
|
|
53
|
-
// Set the
|
|
54
|
-
|
|
55
|
-
"rootDir": "${configDir}/src",
|
|
56
|
-
|
|
57
|
-
// Set the output directory to dist/.
|
|
58
|
-
"outDir": "${configDir}/dist",
|
|
59
|
-
// By default, ._* paths are ignored by npm publish.
|
|
60
|
-
"tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig_dom_bundler_src/tsconfig.tsbuildinfo"
|
|
53
|
+
// Set the output directory to a directory that would be ignored by almost all tools.
|
|
54
|
+
"outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_src/out"
|
|
61
55
|
},
|
|
62
56
|
|
|
63
57
|
"include": ["${configDir}/src/**/*"]
|
package/es/build-bundler.json
CHANGED
|
@@ -44,14 +44,8 @@
|
|
|
44
44
|
"moduleResolution": "bundler",
|
|
45
45
|
"emitDeclarationOnly": true,
|
|
46
46
|
|
|
47
|
-
// Set the
|
|
48
|
-
|
|
49
|
-
"rootDir": "${configDir}/src",
|
|
50
|
-
|
|
51
|
-
// Set the output directory to dist/.
|
|
52
|
-
"outDir": "${configDir}/dist",
|
|
53
|
-
// By default, ._* paths are ignored by npm publish.
|
|
54
|
-
"tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig_es_bundler_src/tsconfig.tsbuildinfo"
|
|
47
|
+
// Set the output directory to a directory that would be ignored by almost all tools.
|
|
48
|
+
"outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_src/out"
|
|
55
49
|
},
|
|
56
50
|
|
|
57
51
|
"include": ["${configDir}/src/**/*"]
|