• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

怎么运行Typescript

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

依据官方示例:

npm i -g typescript

 

示例:tsc *.ts

实例:tsc hello.ts

 

不过以上实现的太有限制了,如下实现可满足正常测试以及学习使用

 

package,json

 1 {
 2     "name": "TypeScript",
 3     "version": "1.0.0",
 4     "description": "",
 5     "main": "index.js",
 6     "scripts": {
 7         "test": "echo \"Error: no test specified\" && exit 1",
 8         "start": "concurrently \"npm run tswatch\" \"npm run lite\"",
 9         "tsc": "tsc",
10         "tswatch": "tsc -w",
11         "lite": "lite-server"
12     },
13     "dependencies": {
14         "core-js": "2.5.7",
15         "classlist.js": "1.1.20150312",
16         "systemjs": "0.21.4",
17         "bootstrap": "4.1.3"
18     },
19     "devDependencies": {
20         "concurrently": "^3.6.1",
21         "lite-server": "^2.4.0",
22         "typescript": "^2.9.2",
23         "typings": "^2.1.1"
24     },
25     "keywords": [],
26     "author": "",
27     "license": "ISC"
28 }

 

tsconfig.json

 1 {
 2     "compilerOptions": {
 3         "target": "es5",
 4         "module": "commonjs",
 5         "moduleResolution": "node",
 6         "emitDecoratorMetadata": true,
 7         "experimentalDecorators": true,
 8         "lib": [
 9             "es2016",
10             "dom"
11         ]
12     },
13     "exclude": ["node_modules"]
14 }

 

 

 

1.npm install

2.新建html文件,引入print.js,新建一个print.ts

3.npm start(执行完后会生成一个print.js文件,随后打开index.html,最后运行)


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript 类型兼容发布时间:2022-07-18
下一篇:
Cocos Creator 3D下TypeScript实现H5版3D投篮游戏!发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap