зеркало из https://github.com/microsoft/rnx-kit.git
chore(align-deps): address CodeQL alerts (#3161)
Addresses: - https://github.com/microsoft/rnx-kit/security/code-scanning/1 - https://github.com/microsoft/rnx-kit/security/code-scanning/2
This commit is contained in:
Родитель
bde7f82c2c
Коммит
7424409eb7
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
---
|
|
@ -67,7 +67,7 @@ const table = markdownTable([
|
|||
const pkg = preset[profileVersion][capability];
|
||||
if ("version" in pkg) {
|
||||
const { name, version } = pkg;
|
||||
return `${name}@${version.replace("<", "<").replace(">", ">")}`;
|
||||
return `${name}@${version.replaceAll("<", "<").replaceAll(">", ">")}`;
|
||||
} else if (pkg.capabilities.length > 0) {
|
||||
return `Meta package for installing ${pkg.capabilities
|
||||
.map((name) => `\`${name}\``)
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"extends": "@rnx-kit/tsconfig/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"alwaysStrict": false
|
||||
"alwaysStrict": false,
|
||||
"lib": ["ES2021"]
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче