IntegerAlex / ts-strict-setup

Detected the use of process.exit() JS-0263
Bug risk
Major
1 occurrence in this check
Don't use process.exit(); throw an error instead
 15    createFiles(projectName)
 16  } catch (error) {
 17    console.error(`Error: ${error.message}`)
 18    process.exit(1) 19  }
 20}
 21