azure web app不生成typescript文件

ogsagwnx  于 2021-06-20  发布在  Kudu
关注(0)|答案(1)|浏览(357)

我有一个asp.net核心项目,其结构如下:

- 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已经可以处理打字了。我错过什么了吗?

iqih9akk

iqih9akk1#

正如大卫艾博所说,谈话被转移到https://github.com/projectkudu/kudu/issues/2156 在那里下定决心。

相关问题