编译打字稿文件的问题

时间:2016-06-27 04:07:20

标签: typescript

我正在学习如何使用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时,它表明它正在编译文件,但它不会创建它。我应该检查哪些想法以使文件正确编译?

0 个答案:

没有答案