TypeScript 有许多设置,通常在 tsconfig.json 文件中指定。例如,我想设置 ExperimentalDecorators 值。
VS 2015 支持添加一个 tsconfig.json 文件,该文件默认包含以下内容:
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5"
},
"exclude": [
"node_modules",
"wwwroot"
]
}
但是,尝试构建会导致此错误:“无法获取属性 'compilerOptions' 的值:对象为空或未定义”
有些人建议添加到项目文件中:
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
...
<TypeScriptExperimentalDecorators>True</TypeScriptExperimentalDecorators>
</PropertyGroup>
这也被拒绝了。我找不到解决此问题的方法。