构建 TypeScript 库
一、初始化
创建一个空目录 typescript-library, tsc --init
初始化 tsconfig.json,具体配置字段,生成的 json 文件又说明,这里不做赘述,修改配置如下:
// typescript-library/tsconfig.json |
二、创建库代码
// typescript-library/src/hello-world.ts |
// typescript-library/src/index.ts |
三、配置 package.json
npm init -y
创建 package.json 文件,并修改 name、main 和 types 字段
{ |
四、库的使用
import {sayHello} from 'helloworld' |
1、编译代码并上传到 npm
tsc
=> npm publish
2、编译代码,直接从本地安装使用
"dependencies": { |
参考文献
本文标题:构建 TypeScript 库
文章作者:Canace
发布时间:2022-12-09
最后更新:2023-05-26
原始链接:https://canace.site/%E6%9E%84%E5%BB%BAts%E5%BA%93/
版权声明:转载请注明出处
分享