快速创建自己的第一个 Typescript 项目
Posted 张驰Zhangchi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速创建自己的第一个 Typescript 项目相关的知识,希望对你有一定的参考价值。
1.基于脚手架项目创建你的项目
git clone https://github.com/alexjoverm/typescript-library-starter.git $yourProjectName
cd $yourProjectName
2.安装依赖
npm install
3.启动开发指令
npm run start
4.在实例网页中引入构建的产物
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script src="./../dist/$yourProjectName.umd.js"></script>
</body>
</html>
以上是关于快速创建自己的第一个 Typescript 项目的主要内容,如果未能解决你的问题,请参考以下文章