File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -418,6 +418,14 @@ module.exports = {
418
418
async : false ,
419
419
checkSyntacticErrors : true ,
420
420
tsconfig : paths . appTsConfig ,
421
+ compilerOptions : {
422
+ module : 'esnext' ,
423
+ moduleResolution : 'node' ,
424
+ resolveJsonModule : true ,
425
+ isolatedModules : true ,
426
+ noEmit : true ,
427
+ jsx : 'preserve' ,
428
+ } ,
421
429
watch : paths . appSrc ,
422
430
silent : true ,
423
431
formatter : typescriptFormatter ,
Original file line number Diff line number Diff line change @@ -538,6 +538,14 @@ module.exports = {
538
538
async : false ,
539
539
checkSyntacticErrors : true ,
540
540
tsconfig : paths . appTsConfig ,
541
+ compilerOptions : {
542
+ module : 'esnext' ,
543
+ moduleResolution : 'node' ,
544
+ resolveJsonModule : true ,
545
+ isolatedModules : true ,
546
+ noEmit : true ,
547
+ jsx : 'preserve' ,
548
+ } ,
541
549
watch : paths . appSrc ,
542
550
silent : true ,
543
551
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