Hi, My config is: ``` new ForkTsCheckerWebpackPlugin({ tsconfig: './tsconfig.json', tslint: './tslint.json', vue: true, async: false, formatter: "codeframe", useTypescriptIncrementalApi: true, measureCompilationTime: true }), ``` Using that config an error I implemented in a vue file is not checked: e.g.: > const test: string = 1234562123; Does not produce any error. Changing useTypescriptIncrementalApi to false works but is much slower.