侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

TypeScript 的 VS Code 配置

2024-05-14 星期二 / 0 评论 / 0 点赞 / 81 阅读 / 887 字

tsconfig.json{"compilerOptions": {"module": "amd","target": "es5","sourceMap": true,"removeComments"

tsconfig.json

{	"compilerOptions": {		"module": "amd",		"target": "es5",		"sourceMap": true,		"removeComments": true,		"outDir":"compiled",		"jsx": "react"	},	"exclude":[		"node_modules",		"compiled",		"libs"	],	"compileOnSave":true}

.vscode/task.json

{    // See https://go.microsoft.com/fwlink/?LinkId=733558    // for the documentation about the tasks.json format    "version": "0.1.0",    "command": "tsc",    "isShellCommand": true,    "args": ["-p", "."],    "showOutput": "silent",    "problemMatcher": "$tsc"}

广告 广告

评论区