Make script blocks respect js/ts.implicitProjectConfig.strictNullChecks (#179333)

Fixes #179331

Also fixes experimental decorators for script blocks
This commit is contained in:
Matt Bierner
2023-04-06 06:59:44 -07:00
committed by GitHub
parent a0ff19a2cd
commit e0ebb7b740
4 changed files with 17 additions and 7 deletions

View File

@@ -37,9 +37,10 @@ export { ClientCapabilities, DocumentContext, LanguageService, HTMLDocument, HTM
export { TextDocument } from 'vscode-languageserver-textdocument';
export interface Settings {
css?: any;
html?: any;
javascript?: any;
readonly css?: any;
readonly html?: any;
readonly javascript?: any;
readonly 'js/ts'?: any;
}
export interface Workspace {