We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 625177d commit f76b5c9Copy full SHA for f76b5c9
packages/react-scripts/config/react-app.d.ts
@@ -2,6 +2,16 @@
2
// Do not edit this file. It's replaced every time you launch a toolbox action.
3
// If you need to add additional declarations, please do so in a new file.
4
5
+declare namespace NodeJS {
6
+ interface Process {
7
+ env: {
8
+ [key: string]: string | undefined;
9
+ NODE_ENV: 'development' | 'production' | 'test';
10
+ PUBLIC_URL: string;
11
+ };
12
+ }
13
+}
14
+
15
declare module '*.bmp' {
16
const src: string;
17
export default src;
0 commit comments