We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3024fc6 commit cfc864bCopy full SHA for cfc864b
deno.jsonc
@@ -3,5 +3,8 @@
3
"tasks": {
4
"lpm": "deno run -A ./packages/cli/bin.ts",
5
"test": "deno test -A"
6
+ },
7
+ "compilerOptions": {
8
+ "noUncheckedIndexedAccess": true
9
}
10
packages/core/src/schema.ts
@@ -76,7 +76,7 @@ export class Schema {
76
!ref.startsWith("#") &&
77
ref.split("#")[0] !== this.nsid.toString(),
78
)
79
- .map((ref) => ref.split("#")[0]),
+ .map((ref) => ref.split("#")[0]!),
80
),
81
];
82
0 commit comments