This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm i typescript -D | |
npx tsc --init --rootDir src --outDir lib --sourceMap --declaration --declarationMap | |
# when you finish it | |
# you declare the name in package.json | |
npm publish |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm i @types/node | |
npm i @types/express |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm i typescript ts-node | |
npx tsc --init --rootdir src --outdir lib | |
# either do this or do the package.json commands | |
npx tsc --watch |