В Angular2 проекте перестали автоматически создаваться .js файлы по сохранению .ts файлов.
{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2015",
"dom"
],
"noImplicitAny": false,
"noEmitOnError": true,
"suppressImplicitAnyIndexErrors": true
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
],
"filesGlob": [
"./app/**/*.ts",
"!./node_modules/**/*.ts",
"src/custom_typings.d.ts",
"typings/browser.d.ts"
],
"files": [
"./app/app.component.spec.ts",
"./app/app.component.ts",
"./app/app.module.ts",
"./app/app.routes.ts",
"./app/contacts/contacts.component.ts",
"./app/distro/distro.component.ts",
"./app/home/home.component.ts",
"./app/main.ts",
"./app/releases/releases.component.ts",
"./app/releases/releases.service.ts"
]
}