码迷,mamicode.com
首页 > 其他好文 > 详细

TypeScript 使用Parcel打包TS代码

时间:2020-06-25 09:18:46      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:pts   oct   npm   device   lang   test   bsp   head   class   

初始化 package.json npm init -y
初始化 tsconfig.json tsc --init
安装 parcel cnpm install parcel@next -D



tsconfig.json 找到配置
"outDir": "./dist",
"rootDir": "./src",

 

 

package.json 配置
"scripts": {
  "test": "parcel ./src/index.html"
},

 

 

index.html
<!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="./page.ts"></script>
</body>
</html>

 



page.ts
const teacher: string = ‘222‘;
console.log(teacher);

 



执行命令 npm run test,控制台没报错,说明 parcel 会自动对 ts 文件进行编译




TypeScript 使用Parcel打包TS代码

标签:pts   oct   npm   device   lang   test   bsp   head   class   

原文地址:https://www.cnblogs.com/wzndkj/p/13191004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!