UNPKG

ntts

Version:

A CLI tool for refactoring an existing NodeJs application to a fully functional TypeScript application.

14 lines (13 loc) 298 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Yarn = exports.NPM = void 0; exports.NPM = { install: 'npm install', add: 'npm install', init: 'npm init -y', }; exports.Yarn = { install: 'yarn', add: 'yarn add', init: 'yarn init -y', };