VS Code和Typescript监视:正在重新编译文件而不保存文件

时间:2019-02-20 07:51:16

标签: typescript visual-studio-code watch tsconfig

我正在开发一个Typescript项目,我运行“ tsc -w”使其在编辑时保持编译状态。

问题在于,即使我不保存文件,有时也会重新编译我的文件。有时,它会随机重新编译我没有碰过的文件(例如,如果我在打字稿中打开现有文件开始编辑)

这是vs代码吗?还是打字稿?有谁知道阻止这种情况发生的解决方案?

我的.tsconfig在下面

{
  "compilerOptions": {
    "target": "es2015",
    "module": "es2015",
    "allowJs": false,
    "jsx": "react",
    "sourceMap": true,
    "outDir": "build",

    "baseUrl": ".",
    "paths": {
      "@shared/*": [ "src/shared/*" ],
      "@app/*": ["src/*"]
    },
    "strict": true,
    "moduleResolution": "node",
    "allowSyntheticDefaultImports": true,
    "experimentalDecorators": true,
    "skipLibCheck": true,
  },
  "filesGlob": [
    "src/**/*.ts",
    "src/**/*.tsx",
  ],
  "types": [
    "react",
    "react-dom",
    "react-native"
  ],
  "exclude": [
    "build",
    "**/node_modules/*",
    "jest.config.js",
    "App.js"
  ],
  "include": [
    "./src",
  ],
  "compileOnSave": false
}

1 个答案:

答案 0 :(得分:0)

结果是,我不必运行单独的Typescript Watch流程-自启动项目以来,Expo Typescript的支持得到了改善。

请参见https://docs.expo.io/versions/latest/guides/typescript/