我目前正在切换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.ts
和someOtherFolder/application.ts
的链接,并且都有引用。
任何线索有什么不对?谢谢!
答案 0 :(得分:0)
只是看看问题。这是一个报告的错误:https://github.com/TypeStrong/atom-typescript/issues/883由任何英雄抢夺。