Problems loading reference ‘https://json.schemastore.org/tsconfig‘: Unable to load schema from ‘http

tsconfig.json curly brace error solution_tsconfig $schema_single-two-year-old❤'s blog-CSDN blog

Error in braces in ts.config.json file

Problems loading reference 'https://json.schemastore.org/tsconfig': Unable to load schema from 'https://json.schemastore.org/tsconfig': Downloading schemas is disabled through setting 'json.schemaDownload.enable'.

 

Solution, add a field in the ts.config.json file, see the code below

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "compilerOptions": { ... },
}

 After adding it, no error will be reported

Guess you like

Origin blog.csdn.net/Frank_colo/article/details/133277644