Я только что установил vs code v1 (последняя версия) и typescript v1.8.10 (последняя версия). Я следовал точной инструкции с vs code веб-сайт, но не смог получить код vs для создания простейшего файла typescript, хотя я могу вручную его построить запускать команду tsc в git bash. Выход из кода vs:
error TS5007: Cannot resolve referenced file: '.'.
error TS5023: Unknown option 'p'
Use the '--help' flag to see options.
Это мой файл helloworld.ts, который действительно не может быть проще:
class Greet {
private _message : string;
constructor(message : string) {
this._message = message;
}
Say = () => console.log(this._message);
}
var g = new Greet('hello typescript!');
g.Say();
Это мой файл tasks.json:
{
// See http://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"
}
и tsconfig.json:
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"sourceMap": true
}
}