@rsbuild/plugin-type-check 0.0.22 → 0.0.24
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/dist/index.d.ts +2 -2
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RsbuildPlugin
|
|
1
|
+
import { RsbuildPlugin } from '@rsbuild/core';
|
|
2
2
|
import { ChainedConfig } from '@rsbuild/shared';
|
|
3
3
|
import ForkTSCheckerPlugin from 'fork-ts-checker-webpack-plugin';
|
|
4
4
|
|
|
@@ -7,6 +7,6 @@ type PluginTypeCheckerOptions = {
|
|
|
7
7
|
enable?: boolean;
|
|
8
8
|
forkTsCheckerOptions?: ChainedConfig<ForkTsCheckerOptions>;
|
|
9
9
|
};
|
|
10
|
-
declare const pluginTypeCheck: (options?: PluginTypeCheckerOptions) => RsbuildPlugin
|
|
10
|
+
declare const pluginTypeCheck: (options?: PluginTypeCheckerOptions) => RsbuildPlugin;
|
|
11
11
|
|
|
12
12
|
export { PluginTypeCheckerOptions, pluginTypeCheck };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsbuild/plugin-type-check",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"description": "TS checker plugin of Rsbuild",
|
|
5
5
|
"homepage": "https://rsbuild.dev",
|
|
6
6
|
"repository": {
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"fork-ts-checker-webpack-plugin": "9.0.0",
|
|
26
|
-
"@rsbuild/shared": "0.0.
|
|
26
|
+
"@rsbuild/shared": "0.0.24"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"typescript": "^5.2.2",
|
|
30
|
-
"@rsbuild/core": "0.0.
|
|
31
|
-
"@rsbuild/test-helper": "0.0.
|
|
30
|
+
"@rsbuild/core": "0.0.24",
|
|
31
|
+
"@rsbuild/test-helper": "0.0.24"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@rsbuild/core": "^0.0.
|
|
34
|
+
"@rsbuild/core": "^0.0.24"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public",
|