I cannot get visual studio to run typescript compilation in js when saving.

I have xproj (asp.net core with network card) TypeScript 2.0.3 tools for updating Visual Studio 2015 3.
I tried to include "watch" : true in tsconfig.json, but it says the current host is not supported.
I went to Tools> Options> Text Editor> typescript> Project and turned on "automatically compile typescript files that are not part of the project"

However, changes to .ts files will only be displayed in .js files only at compile time, but only when there are changes in the c_rd-side files that need to be compiled.
EDIT: I found out that the mere existence of tsconfig.json in the project directory will prevent the compilation from being saved even if the configuration file is empty.
Could this be fixed somehow now?
This is the contents of my tsconfig.json:
{ "compilerOptions": { "target": "es5", "module": "commonjs", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false, "diagnostics": true }, "include": [ "**/*.ts" ], "exclude": [ "node_modules" ] }
EDIT 2 : I also tried:
{ "compileOnSave": true, "compilerOptions": { "target": "es5", "module": "commonjs", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false, "diagnostics": true }, "filesGlob": [ "**/*.ts" ], "exclude": [ "node_modules" ] }
and did nothing.