2016-09-27 15 views
1

我有具有這種結構的ASP.NET核心項目:Azure的Web App不建打字稿文件

- tsconfig.json 
- app 
|- file1.ts 
|- file2.ts 
|- file3.ts 
- wwwroot 
|- app 
|- index.html 

tsconfig有以下內容:

{ 
    "compilerOptions": { 
    "noImplicitAny": false, 
    "noEmitOnError": true, 
    "removeComments": true, 
    "sourceMap": true, 
    "target": "es6", 
    "module": "amd", 
    "outFile": "wwwroot/app/app.js", 
    "strictNullChecks": true 
    }, 
    "compileOnSave": true 
} 

當我嘗試部署此從git到Azure Web App的項目我的.ts文件不會被編譯。我認爲Kudu已經可以處理Typescript了。我錯過了什麼嗎?

+0

你能在https://github.com/projectkudu/kudu打開的問題用[最少的樣品回購(https://github.com/projectkudu/kudu/wiki/Using-a-git-repo-對報告-AN-問題)?謝謝。 –

+0

對話轉移到https://github.com/projectkudu/kudu/issues/2156 –

回答