@ocavue/tsconfig 0.4.0 → 0.5.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
  # Changelog
2
2
 
3
+ ## [0.5.0](https://github.com/ocavue/tsconfig/compare/v0.4.0...v0.5.0) (2025-09-05)
4
+
5
+
6
+ ### Features
7
+
8
+ * enable source map ([#27](https://github.com/ocavue/tsconfig/issues/27)) ([e7e3a82](https://github.com/ocavue/tsconfig/commit/e7e3a82b3a36495c57a2886731417c75959b84d6))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * fix release workflow ([#26](https://github.com/ocavue/tsconfig/issues/26)) ([42154f7](https://github.com/ocavue/tsconfig/commit/42154f7e3b0eee08eae38a2218a3defda8c11530))
14
+
3
15
  ## [0.4.0](https://github.com/ocavue/tsconfig/compare/v0.3.7...v0.4.0) (2025-08-19)
4
16
 
5
17
 
package/dom/app.json CHANGED
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
package/dom/root.json CHANGED
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
package/es/app.json CHANGED
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
package/es/build-tsc.json CHANGED
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
package/es/root.json CHANGED
@@ -34,6 +34,10 @@
34
34
  "verbatimModuleSyntax": true,
35
35
  // Ensure that casing is correct in imports.
36
36
  "forceConsistentCasingInFileNames": true,
37
+ // Generate source map for the generated JavaScript files.
38
+ "sourceMap": true,
39
+ // Generate source map for the generated declaration files.
40
+ "declarationMap": true,
37
41
  // Allow TypeScript to cache build information and skip compilation
38
42
  // when no changes are detected.
39
43
  "composite": true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ocavue/tsconfig",
3
3
  "type": "module",
4
- "version": "0.4.0",
4
+ "version": "0.5.0",
5
5
  "description": "A collection of reusable TypeScript configurations",
6
6
  "author": "ocavue <ocavue@gmail.com>",
7
7
  "license": "MIT",