@ocavue/tsconfig 0.3.7 → 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/.github/actions/setup/action.yml +1 -1
- package/.github/workflows/release.yml +3 -2
- package/CHANGELOG.md +19 -0
- package/dom/app.json +6 -1
- package/dom/build-bundler.json +5 -1
- package/dom/build-tsc.json +5 -1
- package/dom/root.json +6 -1
- package/es/app.json +6 -1
- package/es/build-bundler.json +5 -1
- package/es/build-tsc.json +5 -1
- package/es/root.json +6 -1
- package/package.json +1 -1
|
@@ -18,6 +18,9 @@ jobs:
|
|
|
18
18
|
|
|
19
19
|
publish:
|
|
20
20
|
runs-on: ubuntu-latest
|
|
21
|
+
permissions:
|
|
22
|
+
contents: write
|
|
23
|
+
id-token: write
|
|
21
24
|
needs: [version]
|
|
22
25
|
if: ${{ needs.version.outputs.release_created }}
|
|
23
26
|
steps:
|
|
@@ -27,5 +30,3 @@ jobs:
|
|
|
27
30
|
|
|
28
31
|
- name: Publish to NPM
|
|
29
32
|
run: pnpm publish
|
|
30
|
-
env:
|
|
31
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
15
|
+
## [0.4.0](https://github.com/ocavue/tsconfig/compare/v0.3.7...v0.4.0) (2025-08-19)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* include json and exclude dist ([#23](https://github.com/ocavue/tsconfig/issues/23)) ([a0c8b0e](https://github.com/ocavue/tsconfig/commit/a0c8b0e37e8d5cdb2b24dc8e8e93204987d00c8b))
|
|
21
|
+
|
|
3
22
|
## [0.3.7](https://github.com/ocavue/tsconfig/compare/v0.3.6...v0.3.7) (2025-04-18)
|
|
4
23
|
|
|
5
24
|
|
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,
|
|
@@ -54,5 +58,6 @@
|
|
|
54
58
|
"outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_all/out"
|
|
55
59
|
},
|
|
56
60
|
|
|
57
|
-
"include": ["${configDir}/**/*"]
|
|
61
|
+
"include": ["${configDir}/**/*", "${configDir}/**/*.json"],
|
|
62
|
+
"exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
|
|
58
63
|
}
|
package/dom/build-bundler.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,
|
|
@@ -54,5 +58,5 @@
|
|
|
54
58
|
"outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_src/out"
|
|
55
59
|
},
|
|
56
60
|
|
|
57
|
-
"include": ["${configDir}/src/**/*"]
|
|
61
|
+
"include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
|
|
58
62
|
}
|
package/dom/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,
|
|
@@ -59,5 +63,5 @@
|
|
|
59
63
|
"tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig_dom_node_src/tsconfig.tsbuildinfo"
|
|
60
64
|
},
|
|
61
65
|
|
|
62
|
-
"include": ["${configDir}/src/**/*"]
|
|
66
|
+
"include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
|
|
63
67
|
}
|
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,
|
|
@@ -54,5 +58,6 @@
|
|
|
54
58
|
"outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_root/out"
|
|
55
59
|
},
|
|
56
60
|
|
|
57
|
-
"include": ["${configDir}/*"]
|
|
61
|
+
"include": ["${configDir}/*", "${configDir}/**/*.json"],
|
|
62
|
+
"exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
|
|
58
63
|
}
|
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,
|
|
@@ -48,5 +52,6 @@
|
|
|
48
52
|
"outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_all/out"
|
|
49
53
|
},
|
|
50
54
|
|
|
51
|
-
"include": ["${configDir}/**/*"]
|
|
55
|
+
"include": ["${configDir}/**/*", "${configDir}/**/*.json"],
|
|
56
|
+
"exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
|
|
52
57
|
}
|
package/es/build-bundler.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,
|
|
@@ -48,5 +52,5 @@
|
|
|
48
52
|
"outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_src/out"
|
|
49
53
|
},
|
|
50
54
|
|
|
51
|
-
"include": ["${configDir}/src/**/*"]
|
|
55
|
+
"include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
|
|
52
56
|
}
|
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,
|
|
@@ -53,5 +57,5 @@
|
|
|
53
57
|
"tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig_es_node_src/tsconfig.tsbuildinfo"
|
|
54
58
|
},
|
|
55
59
|
|
|
56
|
-
"include": ["${configDir}/src/**/*"]
|
|
60
|
+
"include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
|
|
57
61
|
}
|
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,
|
|
@@ -48,5 +52,6 @@
|
|
|
48
52
|
"outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_root/out"
|
|
49
53
|
},
|
|
50
54
|
|
|
51
|
-
"include": ["${configDir}/*"]
|
|
55
|
+
"include": ["${configDir}/*", "${configDir}/**/*.json"],
|
|
56
|
+
"exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
|
|
52
57
|
}
|