doc(misc): fix declarationMap config (#30700)

Fixes a typo where `declarationMaps` should be `declarationMap`.
This commit is contained in:
Jan Vincent Liwanag 2025-04-13 18:02:35 +08:00 committed by GitHub
parent 65752addb5
commit 4cc3a39794
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -142,7 +142,7 @@ The root `tsconfig.base.json` should contain a `compilerOptions` property and no
// Required compiler options
"composite": true,
"declaration": true,
"declarationMaps": true
"declarationMap": true
// Other options...
}
}