fix: Duplicate string index signature in ProcessEnv (#5621)

This commit is contained in:
ZHAO Jinxiang
2018-10-31 12:42:12 +08:00
committed by Joe Haddad
parent b18ea6c818
commit e1321e520c
2 changed files with 1 additions and 2 deletions

View File

@@ -4,7 +4,6 @@
declare namespace NodeJS {
interface ProcessEnv {
[key: string]: string | undefined
NODE_ENV: 'development' | 'production' | 'test'
PUBLIC_URL: string
}

View File

@@ -94,7 +94,7 @@ function verifyTypeScriptSetup() {
suggested: 'es5',
},
allowJs: { suggested: true },
skipLibCheck: { suggested: true },
skipLibCheck: { suggested: false },
esModuleInterop: { suggested: true },
allowSyntheticDefaultImports: { suggested: true },
strict: { suggested: true },