我有打字稿类
class UserModel
{
public vipTiers: Array<VipTierDto>;
public games: Array<GameDto>;
}
这导致在VisualStudio 2015,TypeScript 2.0.6中向我显示此警告 您的代码样式需要缺少“公共”修饰符
显然我更喜欢保留私人/公共修饰符。我在哪里可以设置编码风格?
这是我的tsconfig.json
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true
},
"include": [
"**/*.ts"
]
}
答案 0 :(得分:0)
我认为此警告来自ReSharper而非Visual Studio。如果使用ReSharper,您可以访问ReSharper - &gt;选项 - &gt; TypeScript - &gt;代码风格。然后选中&#34;使用明确的&#39; public&#39;改性剂&#34 ;.适合我。