在遇到一些麻烦后,我目前正在从 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
then 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
他们都有他们的引用。
有什么线索有什么问题吗?谢谢 !