我正在学习如何使用typescript,我在将文件正确编译成Javascript文件时遇到问题。我在Windows上,我正在使用Visual Studio Code。我的tsconfig.json文件如下:
{
"compilerOptions": {
"target": "ES5",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"out": "output/project.js",
"sourceMap": true
},
"files": [
"hello-world.ts"
]
}
我的hello-world.ts文件是:
class Startup {
public static main():number{
console.log('hello world');
return 1;
}
}
最后.vscode / tasks.json文件如下:
{
"version": "0.1.0",
"command": "tsc",
"showOutput": "always",
"isShellCommand": true,
"args": [],
"problemMatcher": "$tsc"
}
当我单击ctrl + shift + b时,它表明它正在编译文件,但它不会创建它。我应该检查哪些想法以使文件正确编译?