@ocavue/tsconfig 0.4.0 → 0.5.1-beta.1
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/.github/actions/setup/action.yml +1 -1
- package/.github/workflows/release.yml +1 -1
- package/CHANGELOG.md +12 -0
- package/dom/app.json +9 -0
- package/dom/build-bundler.json +9 -0
- package/dom/build-tsc.json +9 -0
- package/dom/root.json +9 -0
- package/es/app.json +9 -0
- package/es/build-bundler.json +9 -0
- package/es/build-tsc.json +9 -0
- package/es/root.json +9 -0
- package/package.json +3 -3
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
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/dom/build-bundler.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/dom/build-tsc.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/dom/root.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/es/app.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/es/build-bundler.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/es/build-tsc.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"composite": true,
|
package/es/root.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"skipLibCheck": true,
|
|
22
22
|
// Allow JavaScript files to be included in the project.
|
|
23
23
|
"allowJs": true,
|
|
24
|
+
// Rewrite .ts, .tsx, .mts, and .cts file extensions in relative import
|
|
25
|
+
// paths to their JavaScript equivalent in output files. Also allow
|
|
26
|
+
// TypeScript files to import each other with a TypeScript-specific
|
|
27
|
+
// extension like .ts, .mts, or .tsx.
|
|
28
|
+
"rewriteRelativeImportExtensions": true,
|
|
24
29
|
// Allow JSON files to be imported as modules.
|
|
25
30
|
"resolveJsonModule": true,
|
|
26
31
|
// Force TypeScript to consider all files as modules. This helps to avoid
|
|
@@ -34,6 +39,10 @@
|
|
|
34
39
|
"verbatimModuleSyntax": true,
|
|
35
40
|
// Ensure that casing is correct in imports.
|
|
36
41
|
"forceConsistentCasingInFileNames": true,
|
|
42
|
+
// Generate source map for the generated JavaScript files.
|
|
43
|
+
"sourceMap": true,
|
|
44
|
+
// Generate source map for the generated declaration files.
|
|
45
|
+
"declarationMap": true,
|
|
37
46
|
// Allow TypeScript to cache build information and skip compilation
|
|
38
47
|
// when no changes are detected.
|
|
39
48
|
"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
|
+
"version": "0.5.1-beta.1",
|
|
5
5
|
"description": "A collection of reusable TypeScript configurations",
|
|
6
6
|
"author": "ocavue <ocavue@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/bun": "^1.2
|
|
25
|
-
"prettier": "^3.
|
|
24
|
+
"@types/bun": "^1.3.2",
|
|
25
|
+
"prettier": "^3.6.2"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"build": "bun build.ts"
|