TS

使用Visual Studio Code搭建TypeScript

2019-03-01  本文已影响0人  KingOfLion

使用Visual Studio Code搭建TypeScript开发环境

1、TypeScript是干什么的 ?

image

2、为什么选择TypeScript ?


3、TypeScript语法特性


4、TypeScrip与JavaScript 的区别


5、安装Visual Studio Code

下载Visual Studio Code (VSCodeSetup-stable.exe)

运行:VSCodeSetup-stable.exe,安装Visual Studio Code :

image

6、安装Node.js

下载Node.js(node-v4.5.0-x64.msi)

运行:node-v4.5.0-x64.msi,安装Node.js :

image

7、安装TypeScript Compiler

image

8、更新TypeScript Compiler

image

9、安装 Tpyings

image

10、安装 node 的 .d.ts 库

image

11、创建ts_demo项目

image

12、创建 tsconfig.json

image

13、修改tsconfig.json

image
{
    "compilerOptions": {
        "module": "commonjs",
        "target": "es6",
        "noImplicitAny": false,
        "sourceMap": true,
        "allowJs": true
    }
    ,
    "exclude": [
        "node_modules"
    ]
}

14、配置 TypeScript 编译

image image

15、新建greeter.ts文件


class Student {
    firstName : string;
    lastName : string;

    constructor(fiestName : string,  lastName : string) {
        this.firstName = fiestName;
        this.lastName = lastName;
    }

    greeter() {
        return "Hello,您好" + this.firstName + " " + this.lastName;
    }
}

var user = new Student("王", "小明");

// document.body.innerHTML = user.greeter();
document.body.innerHTML = user.greeter();


16、编译greeter.ts

image

17、使用新版本TypeScript

在命令行(cmd)下输入:npm install typescript@2.0.3

image
{
    "typescript.tsdk": "node_modules/typescript/lib"
}
image

18、修改启动源

image

19、创建index.html

输入:html:5,按tab键回自动产生index.html文档,然后修改如下:

<!DOCTYPE html>
<html>
    <head>
            <meta charset="utf-8"/>
            <title>greeter</title>
    </head>
    <body>
        <script src="greeter.js"></script>
    </body>
</html>
image

20、浏览器打开index.html

image
上一篇下一篇

猜你喜欢

热点阅读