0

在遇到一些麻烦后,我目前正在从 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 时,它会显示Buildingthen Build success,但我application.js的 webroot 文件夹中没有。

结构如下所示:

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

所以我app/application.ts在那个链接里面有引用,someFolder/application.ts并且someOtherFolder/application.ts他们都有他们的引用。

有什么线索有什么问题吗?谢谢 !

4

1 回答 1

0

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

于 2016-03-16T00:10:42.097 回答