File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ const paths = require('./paths');
2424const ManifestPlugin = require ( 'webpack-manifest-plugin' ) ;
2525const ModuleNotFoundPlugin = require ( 'react-dev-utils/ModuleNotFoundPlugin' ) ;
2626const ForkTsCheckerWebpackPlugin = require ( 'fork-ts-checker-webpack-plugin-alt' ) ;
27+ const typescriptFormatter = require ( 'react-dev-utils/typescriptFormatter' ) ;
2728// @remove -on-eject-begin
2829const getCacheIdentifier = require ( 'react-dev-utils/getCacheIdentifier' ) ;
2930// @remove -on-eject-end
@@ -419,6 +420,8 @@ module.exports = {
419420 checkSyntacticErrors : true ,
420421 tsconfig : paths . appTsConfig ,
421422 watch : paths . appSrc ,
423+ silent : true ,
424+ formatter : typescriptFormatter ,
422425 } ) ,
423426 ] . filter ( Boolean ) ,
424427
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ const paths = require('./paths');
2828const getClientEnvironment = require ( './env' ) ;
2929const ModuleNotFoundPlugin = require ( 'react-dev-utils/ModuleNotFoundPlugin' ) ;
3030const ForkTsCheckerWebpackPlugin = require ( 'fork-ts-checker-webpack-plugin-alt' ) ;
31+ const typescriptFormatter = require ( 'react-dev-utils/typescriptFormatter' ) ;
3132// @remove -on-eject-begin
3233const getCacheIdentifier = require ( 'react-dev-utils/getCacheIdentifier' ) ;
3334// @remove -on-eject-end
@@ -539,6 +540,8 @@ module.exports = {
539540 checkSyntacticErrors : true ,
540541 tsconfig : paths . appTsConfig ,
541542 watch : paths . appSrc ,
543+ silent : true ,
544+ formatter : typescriptFormatter ,
542545 } ) ,
543546 ] . filter ( Boolean ) ,
544547 // Some libraries import Node modules but don't use them in the browser.
You can’t perform that action at this time.
0 commit comments