我正在使用cordova的设备插件,所以我有这样的一行let model = device.model || "";
会导致Cannot find name 'device'.
错误。我认为使用 ESLint 我需要做,
"eslintConfig": {
"globals": {
"device": true
}
}
但是 TSLint 的对应物是什么?
问问题
7189 次
我正在使用cordova的设备插件,所以我有这样的一行let model = device.model || "";
会导致Cannot find name 'device'.
错误。我认为使用 ESLint 我需要做,
"eslintConfig": {
"globals": {
"device": true
}
}
但是 TSLint 的对应物是什么?