Atom tsconfig没有编译(当它VScode时)

时间:2016-03-16 00:06:35

标签: typescript compilation atom-editor tsc tsconfig

我目前正在切换VScode后出现问题。

我的主要问题是在VScode中我的TypeScript编译完美,但在Atom中它没有做任何事情......

这是我的tsconfig.json

{
  "compileOnSave": true,
  "compilerOptions": {
    "target": "es5",
    "removeComments": true,
    "outFile": "application.js",
    "sourceMap": true,
    "noImplicitAny": true
  },
  "files": [
    "app/application.ts"
  ],
  "atom": {
    "rewriteTsconfig": false,
    "formatOnSave": true
  }
}

因此,当我执行F6时,会显示Building然后Build success,但我的webroot文件夹中没有application.js

结构如下:

-app
  -application.ts
  -someFolder
    -someComponent
      -someTs.ts
    -application.ts
  -someOtherFolder
    -someOtherComponent
      -someTs.ts
    -application.ts

因此我的app/application.ts内部引用了someFolder/application.tssomeOtherFolder/application.ts的链接,并且都有引用。

任何线索有什么不对?谢谢!

1 个答案:

答案 0 :(得分:0)

只是看看问题。这是一个报告的错误:https://github.com/TypeStrong/atom-typescript/issues/883由任何英雄抢夺。