I am trying to set up a VSCode environment for working with TypeScript v2.03
I start out with a simple vanilla javascript snippet I can test out in node via the integrated terminal.
function Person() {
this.name = "";
}
Person.prototype.age = 0;
let me = new Person();
I insert into the Typescript Playground website and it compiles fine with no complaints.
But when I create a new file in VSCode, the VSCode editor complains:
And if I run webpack with the ts-loader plugin I get this error:

When I run 'tsc src/test.ts' it compiles without complaints.
My questions:
- Is my code wrong or is this just a complaint I'm supposed to ignore?
- Is there anyway to tell VSCode to stop showing me the complaint?
