在 Visual Studio Code 中,你可以使用 JSON schema 来让编辑器提供更好的提示和补全功能。TypeScript 编译器的配置文件 (tsconfig.json) 也可以使用 JSON schema 来提供这些功能。
要在你的 tsconfig.json 文件中使用 JSON schema,你需要在文件的最顶部添加一行注释,指向 JSON schema 文件的 URL。例如:
// This file is a configuration file for the TypeScript compiler. // See: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html " $schema " : "https://schemastore.azurewebsites.net/schemas/json/tsconfig.json" // ...这样,当你在编辑 tsconfig.json 文件时,Visual Studio Code 就会使用 JSON schema 来提供提示和补全功能。
希望这对你有帮助。