You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"noEmit: true": "We don't set outDir here because webpack handles actually emitting the files. This means we need to set noEmit to true here so tooling doesn't whine about .js files overwriting themselves and override that back to false in the ts-loader config for webpack",
"module: esnext": "Webpack will convert ES modules to the required format.",
"target: es5": "Setting a very low target for IE11 compatibility.",
"allowJs: true": "Make it possible to gradually adopt TypeScript, or not use it at all.",