Turn on certain TypeScript options (#5607)

This commit is contained in:
Joe Haddad
2018-10-28 14:47:06 -04:00
committed by GitHub
parent eca0ec0d52
commit 9747480f19
4 changed files with 18 additions and 1 deletions

View File

@@ -424,6 +424,14 @@ module.exports = {
async: false,
checkSyntacticErrors: true,
tsconfig: paths.appTsConfig,
compilerOptions: {
module: 'esnext',
moduleResolution: 'node',
resolveJsonModule: true,
isolatedModules: true,
noEmit: true,
jsx: 'preserve',
},
watch: paths.appSrc,
silent: true,
formatter: typescriptFormatter,

View File

@@ -544,6 +544,14 @@ module.exports = {
async: false,
checkSyntacticErrors: true,
tsconfig: paths.appTsConfig,
compilerOptions: {
module: 'esnext',
moduleResolution: 'node',
resolveJsonModule: true,
isolatedModules: true,
noEmit: true,
jsx: 'preserve',
},
watch: paths.appSrc,
silent: true,
formatter: typescriptFormatter,

View File

@@ -45,7 +45,7 @@
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"file-loader": "2.0.0",
"fork-ts-checker-webpack-plugin-alt": "0.4.10",
"fork-ts-checker-webpack-plugin-alt": "0.4.14",
"fs-extra": "7.0.0",
"html-webpack-plugin": "4.0.0-alpha.2",
"identity-obj-proxy": "3.0.0",

View File

@@ -101,6 +101,7 @@ function verifyTypeScriptSetup() {
forceConsistentCasingInFileNames: { suggested: true },
// These values are required and cannot be changed by the user
// Keep this in sync with the webpack config
module: {
parsedValue: ts.ModuleKind.ESNext,
value: 'esnext',