File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1414 // in webpack you need to add -> resolve: { alias: { '@src': PATH_TO_SRC } }
1515 },
1616 " outDir" : " dist/" , // target for compiled files
17- " allowSyntheticDefaultImports" : true , // no errors on commonjs default import
17+ " allowSyntheticDefaultImports" : true , // no errors with commonjs modules interop
18+ " esModuleInterop" : true ,
1819 " allowJs" : true , // include js files
1920 " checkJs" : true , // typecheck js files
2021 " declaration" : false , // don't emit declarations
Original file line number Diff line number Diff line change 77 // in webpack you need to add -> resolve: { alias: { '@src': PATH_TO_SRC } }
88 },
99 "outDir" : " dist/" , // target for compiled files
10- "allowSyntheticDefaultImports" : true , // no errors on commonjs default import
10+ "allowSyntheticDefaultImports" : true , // no errors with commonjs modules interop
11+ "esModuleInterop" : true ,
1112 "allowJs" : true , // include js files
1213 "checkJs" : true , // typecheck js files
1314 "declaration" : false , // don't emit declarations
You can’t perform that action at this time.
0 commit comments