We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00942d5 commit b7b2cd9Copy full SHA for b7b2cd9
src/utils/define.ts
@@ -324,6 +324,8 @@ export class ProjectConfig {
324
* code checker in dev mode, see fork-ts-checker-webpack-plugin.
325
*/
326
public devChecker?: {
327
+ async?: boolean;
328
+
329
typescript?: {
330
enabled: boolean;
331
memoryLimit?: number;
src/utils/webpack-dev-server.ts
@@ -72,6 +72,7 @@ export const runWebpackDevServer = async (
72
) {
73
webpackConfig.plugins.push(
74
new ForkTsCheckerWebpackPlugin({
75
+ async: globalState.sourceConfig.devChecker?.async,
76
typescript: {
77
enabled: true,
78
memoryLimit: 8192,
0 commit comments