File tree 4 files changed +18
-1
lines changed
4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -424,6 +424,14 @@ module.exports = {
424
424
async : false ,
425
425
checkSyntacticErrors : true ,
426
426
tsconfig : paths . appTsConfig ,
427
+ compilerOptions : {
428
+ module : 'esnext' ,
429
+ moduleResolution : 'node' ,
430
+ resolveJsonModule : true ,
431
+ isolatedModules : true ,
432
+ noEmit : true ,
433
+ jsx : 'preserve' ,
434
+ } ,
427
435
watch : paths . appSrc ,
428
436
silent : true ,
429
437
formatter : typescriptFormatter ,
Original file line number Diff line number Diff line change @@ -544,6 +544,14 @@ module.exports = {
544
544
async : false ,
545
545
checkSyntacticErrors : true ,
546
546
tsconfig : paths . appTsConfig ,
547
+ compilerOptions : {
548
+ module : 'esnext' ,
549
+ moduleResolution : 'node' ,
550
+ resolveJsonModule : true ,
551
+ isolatedModules : true ,
552
+ noEmit : true ,
553
+ jsx : 'preserve' ,
554
+ } ,
547
555
watch : paths . appSrc ,
548
556
silent : true ,
549
557
formatter : typescriptFormatter ,
Original file line number Diff line number Diff line change 45
45
"eslint-plugin-jsx-a11y" : " 6.1.2" ,
46
46
"eslint-plugin-react" : " 7.11.1" ,
47
47
"file-loader" : " 2.0.0" ,
48
- "fork-ts-checker-webpack-plugin-alt" : " 0.4.10 " ,
48
+ "fork-ts-checker-webpack-plugin-alt" : " 0.4.14 " ,
49
49
"fs-extra" : " 7.0.0" ,
50
50
"html-webpack-plugin" : " 4.0.0-alpha.2" ,
51
51
"identity-obj-proxy" : " 3.0.0" ,
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ function verifyTypeScriptSetup() {
101
101
forceConsistentCasingInFileNames : { suggested : true } ,
102
102
103
103
// These values are required and cannot be changed by the user
104
+ // Keep this in sync with the webpack config
104
105
module : {
105
106
parsedValue : ts . ModuleKind . ESNext ,
106
107
value : 'esnext' ,
You can’t perform that action at this time.
0 commit comments