Set up the build
Right click on the project and click New Item. Then choose TypeScript Configuration File and use the default name tsconfig.json.
Replace the default tsconfig.json with the following:
{
"compilerOptions": {
"noImplicitAny": true,
"noEmitOnError": true,
"sourceMap": true,
"target": "es5",
"outDir": "./Scripts/App"
},
"files": [
"./src/app.ts",
],
"compileOnSave": true
}
This is similar to the default, with the following differences:
It sets "noImplicitAny"