express-generator-typescript
Version:
Generate new Express applications similar to express-generate which but sets it up to use TypeScript instead
12 lines (9 loc) • 351 B
text/typescript
/******************************************************************************
Enums
******************************************************************************/
// NOTE: These need to match the names of your ".env" files
export enum NodeEnvs {
Dev = 'development',
Test = 'test',
Production = 'production'
}