compileOnSave
Setting a top-level property compileOnSave
signals to the IDE to generate all files for a given tsconfig.json upon saving.
1 2 3 4 5 6 | { "compileOnSave" : true , "compilerOptions" : { "noImplicitAny" : true } } |
This feature is currently supported in Visual Studio 2015 with TypeScript 1.8.4 and above, and atom-typescript plugin.
Please login to continue.