Javascript atom typescript更新.ts文件,但html中的更改不会';保存时不更新

Javascript atom typescript更新.ts文件,但html中的更改不会';保存时不更新,javascript,typescript,atom-editor,Javascript,Typescript,Atom Editor,我刚刚安装了atom typescript。我在窗户上。保存文件时,.ts文件中的更改将更新。当更改html文件并保存该文件时,刷新时更新不会显示在页面上。我错过了什么?我已经阅读了atom typescript文档,但没有看到任何关于此的内容 我的tsconfig.json文件是- { "compilerOptions": { "target": "es5", "module": "commonjs", "declaration": false, "noImplici

我刚刚安装了atom typescript。我在窗户上。保存文件时,.ts文件中的更改将更新。当更改html文件并保存该文件时,刷新时更新不会显示在页面上。我错过了什么?我已经阅读了atom typescript文档,但没有看到任何关于此的内容

我的tsconfig.json文件是-

{
 "compilerOptions": {
   "target": "es5",
   "module": "commonjs",
   "declaration": false,
   "noImplicitAny": false,
   "removeComments": true,
   "noLib": false
  },
 "compileOnSave ": true
} 
我错过了什么

您需要在web浏览器(以及可选的web服务器)中禁用缓存。首先,在chrome上尝试“空缓存和硬重新加载”:


提示:
html
与atom typescript无关

谢谢。由于生病,我已经几个月没有编码了。我忘了清理缓存。顺便说一句,你的atom打字脚本很棒。更谢谢你。