创建 tsconfig.json
tsc
编译器不会检测该文件是否存在使用 tsc -p jsconfig.json
创建
隐藏build 后的js 文件
在.vscode
中的配置文件值作用于当前项目
在setting.json
文件设置
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.js": { "when": "$(basename).ts" },
"**/**.js": { "when": "$(basename).tsx" }
安装指定版本 typescript
npm install --save-dev typescript@2.2.1
安装本地匹配版本:
npm install --save-dev typescript
VS 命令
-
ctr +
` 控制台 -
command + shift + p
命令面板
网友评论