$ npm install –save jquery @types/jquery
tsconfig.json
"allowSyntheticDefaultImports": true, "esModuleInterop": true,
app.ts
import $ from 'jquery';
$('input[name=password_change]').on('change', function(){
if($('.changeterm').hasClass('displaynone')){
$('.changeterm').removeClass('displaynone');
} else {
$('.changeterm').addClass('displaynone');
}
});


OK いい感じ