hw-npm-module
v1.0.17
Published
1. `npm init` -- will init package.json 2. npm pack /??? 3. `npm install typescript -g` -- global installation for TS 4. `npm i -D react @types/react typescript` -- add dev dependency for TS and React 5. `tsc --init` -- init tsconfig.json 6. `tsc -p .` --
Readme
how to create package
npm init-- will init package.json- npm pack /???
npm install typescript -g-- global installation for TSnpm i -D react @types/react typescript-- add dev dependency for TS and Reacttsc --init-- init tsconfig.jsontsc -p .-- will build specified targets in current path.npm publish-- will publish updates
