5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
|
|
/*
|
||
|
|
`true` if debug mode enabled and `false` otherwise
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const DEBUG_MODE: boolean = process.env.NODE_ENV === "development";
|