Commit e1321e52 authored by ZHAO Jinxiang's avatar ZHAO Jinxiang Committed by Joe Haddad
Browse files

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

parent b18ea6c8
3 merge requests!12191Lim.Pisey.168:/Identified - We are currently investigating reports of missing build logs. The issue has been identified and a resolution is in progress. We will provide a further update when available.Mar 21, 09:02 UTC,!12853brikk,!5717Automatically extract project file structure from build bundle file
Showing with 1 addition and 2 deletions
+1 -2
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
declare namespace NodeJS { declare namespace NodeJS {
interface ProcessEnv { interface ProcessEnv {
[key: string]: string | undefined
NODE_ENV: 'development' | 'production' | 'test' NODE_ENV: 'development' | 'production' | 'test'
PUBLIC_URL: string PUBLIC_URL: string
} }
......
...@@ -94,7 +94,7 @@ function verifyTypeScriptSetup() { ...@@ -94,7 +94,7 @@ function verifyTypeScriptSetup() {
suggested: 'es5', suggested: 'es5',
}, },
allowJs: { suggested: true }, allowJs: { suggested: true },
skipLibCheck: { suggested: true }, skipLibCheck: { suggested: false },
esModuleInterop: { suggested: true }, esModuleInterop: { suggested: true },
allowSyntheticDefaultImports: { suggested: true }, allowSyntheticDefaultImports: { suggested: true },
strict: { suggested: true }, strict: { suggested: true },
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment